ionic-angular
Version:
A powerful framework for building mobile and progressive web apps with JavaScript and Angular
15 lines (14 loc) • 344 B
TypeScript
export interface ActionSheetOptions {
title?: string;
subTitle?: string;
cssClass?: string;
buttons?: (ActionSheetButton | string)[];
enableBackdropDismiss?: boolean;
}
export interface ActionSheetButton {
text?: string;
role?: string;
icon?: string;
cssClass?: string;
handler?: () => boolean | void;
}