fix(select): cssClass + strong typed

This commit is contained in:
Manu Mtz.-Almeida
2018-04-27 18:25:03 +02:00
parent c0ec02e534
commit 826e02bcf0
8 changed files with 54 additions and 55 deletions

View File

@ -2,7 +2,7 @@
export interface ActionSheetOptions {
header?: string;
subHeader?: string;
cssClass?: string;
cssClass?: string | string[];
buttons: (ActionSheetButton | string)[];
enableBackdropDismiss?: boolean;
translucent?: boolean;
@ -12,7 +12,7 @@ export interface ActionSheetButton {
text?: string;
role?: 'cancel' | 'destructive' | 'selected' | string;
icon?: string;
cssClass?: string;
cssClass?: string | string[];
handler?: () => boolean | void;
}