mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2026-03-13 10:22:08 +08:00
13 lines
397 B
TypeScript
13 lines
397 B
TypeScript
import { AnimationBuilder, ComponentProps, ComponentRef, FrameworkDelegate } from '../../interface';
|
|
|
|
export interface ModalOptions {
|
|
component: ComponentRef;
|
|
componentProps?: ComponentProps;
|
|
showBackdrop?: boolean;
|
|
enableBackdropDismiss?: boolean;
|
|
enterAnimation?: AnimationBuilder;
|
|
leaveAnimation?: AnimationBuilder;
|
|
cssClass?: string | string[];
|
|
delegate?: FrameworkDelegate;
|
|
}
|