@n8d/htwoo-core
Version:
hTWOo is a Fluent Design Framework purely in HTML and CSS
22 lines (21 loc) • 488 B
TypeScript
export class HOODialog {
/** Options for modal dialog */
static options: {
closer: any;
backdropCloser: boolean;
escCloser: boolean;
};
/**
* Enum of available dialog types
*/
static dialogType: {
DIALOG: string;
MODAL: string;
};
constructor(launcher: any, dialog: any, dialogType?: string, options?: {
closer: any;
backdropCloser: boolean;
escCloser: boolean;
});
#private;
}