fix(alert): add missing cssClass property for buttons

Commit 46fe1ff53c defined the `AlertButton` interface for the `buttons` array, but it's missing the `cssClass` property as described in the **Button options** section of the docs: http://ionicframework.com/docs/v2/api/components/alert/AlertController/#advanced
This commit is contained in:
Rodrigo Fernández
2017-03-23 12:52:15 +01:00
committed by GitHub
parent e07aad460d
commit 4fbcda7440

View File

@@ -27,5 +27,6 @@ export interface AlertInputOptions {
export interface AlertButton {
text?: string;
role?: string;
cssClass?: string;
handler?: Function;
};