@dopt/semantic-data-layer-modal
v0.2.3
Published
An interface definition for Dopt's modal component
Downloads
1,277
Readme
@dopt/semantic-data-layer-modal
An interface definition for Dopt's modal component.
export interface Modal {
id: string;
title: string | null | undefined;
body: RichText | null | undefined;
completeLabel: string | null | undefined;
dismissLabel: string | null | undefined;
active: boolean;
completed: boolean;
dismissed: boolean;
complete: () => void;
dismiss: () => void;
}