UNPKG

520 BTypeScriptView Raw
1export interface ClassName {
2 SCROLLBAR_MEASURER: string;
3 BACKDROP: string;
4 OPEN: string;
5 FADE: string;
6 IN: string;
7 SHOW: string;
8}
9export interface Selector {
10 DIALOG: string;
11 DATA_TOGGLE: string;
12 DATA_DISMISS: string;
13 FIXED_CONTENT: string;
14}
15export interface TransitionDurations {
16 MODAL: number;
17 BACKDROP: number;
18}
19export interface DismissReasons {
20 BACKRDOP: string;
21 ESC: string;
22 BACK: string;
23}
24export declare type CloseInterceptorFn = () => Promise<void>;