mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-17 18:54:11 +08:00
21 lines
549 B
TypeScript
21 lines
549 B
TypeScript
import { AnimationBuilder, ComponentProps, ComponentRef, FrameworkDelegate } from '../../interface';
|
|
|
|
export interface PopoverOptions<T extends ComponentRef = ComponentRef> {
|
|
component: T;
|
|
componentProps?: ComponentProps<T>;
|
|
showBackdrop?: boolean;
|
|
backdropDismiss?: boolean;
|
|
translucent?: boolean;
|
|
cssClass?: string | string[];
|
|
event?: Event;
|
|
delegate?: FrameworkDelegate;
|
|
animated?: boolean;
|
|
|
|
mode?: string;
|
|
keyboardClose?: boolean;
|
|
id?: string;
|
|
|
|
enterAnimation?: AnimationBuilder;
|
|
leaveAnimation?: AnimationBuilder;
|
|
}
|