mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2026-03-13 10:22:08 +08:00
* chore: internal import updates to improve bundling - Rename keyboard.ts so it has a good filename after custom element bundling - Import util fns directly instead of from top level index - Do not export with * * chore(angular): bump ng-packagr Co-authored-by: Mike Hartington <mikehartington@gmail.com>
20 lines
527 B
TypeScript
20 lines
527 B
TypeScript
import { AnimationBuilder, Mode, SpinnerTypes } from '../../interface';
|
|
import { IonicSafeString } from '../../utils/sanitization';
|
|
|
|
export interface LoadingOptions {
|
|
spinner?: SpinnerTypes | null;
|
|
message?: string | IonicSafeString;
|
|
cssClass?: string | string[];
|
|
showBackdrop?: boolean;
|
|
duration?: number;
|
|
translucent?: boolean;
|
|
animated?: boolean;
|
|
backdropDismiss?: boolean;
|
|
mode?: Mode;
|
|
keyboardClose?: boolean;
|
|
id?: string;
|
|
|
|
enterAnimation?: AnimationBuilder;
|
|
leaveAnimation?: AnimationBuilder;
|
|
}
|