mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-19 03:32:21 +08:00
19 lines
415 B
TypeScript
19 lines
415 B
TypeScript
|
|
export interface ActionSheetOptions {
|
|
header?: string;
|
|
subHeader?: string;
|
|
cssClass?: string | string[];
|
|
buttons: (ActionSheetButton | string)[];
|
|
enableBackdropDismiss?: boolean;
|
|
translucent?: boolean;
|
|
}
|
|
|
|
export interface ActionSheetButton {
|
|
text?: string;
|
|
role?: 'cancel' | 'destructive' | 'selected' | string;
|
|
icon?: string;
|
|
cssClass?: string | string[];
|
|
handler?: () => boolean | void;
|
|
}
|
|
|