Files
ionic-framework/core/src/components/loading/loading-interface.ts
2018-08-29 16:19:51 +02:00

16 lines
317 B
TypeScript

import { SpinnerTypes } from '../../interface';
export interface LoadingOptions {
spinner?: SpinnerTypes;
message?: string;
cssClass?: string | string[];
showBackdrop?: boolean;
duration?: number;
translucent?: boolean;
animated?: boolean;
mode?: string;
keyboardClose?: boolean;
id?: string;
}