Files
ionic-framework/core/src/components/popover/popover-interface.ts
2018-10-04 17:21:15 +02:00

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;
}