mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-16 18:17:31 +08:00
16 lines
317 B
TypeScript
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;
|
|
}
|