a zip code crypto-currency system good for red ONLY

action-sheet-options.d.ts 344B

123456789101112131415
  1. export interface ActionSheetOptions {
  2. title?: string;
  3. subTitle?: string;
  4. cssClass?: string;
  5. buttons?: (ActionSheetButton | string)[];
  6. enableBackdropDismiss?: boolean;
  7. }
  8. export interface ActionSheetButton {
  9. text?: string;
  10. role?: string;
  11. icon?: string;
  12. cssClass?: string;
  13. handler?: () => boolean | void;
  14. }