ionic-angular
Version:
A powerful framework for building mobile and progressive web apps with JavaScript and Angular 2
21 lines (20 loc) • 450 B
TypeScript
export interface AlertOptions {
title?: string;
subTitle?: string;
message?: string;
cssClass?: string;
mode?: string;
inputs?: Array<AlertInputOptions>;
buttons?: Array<any>;
enableBackdropDismiss?: boolean;
}
export interface AlertInputOptions {
type?: string;
name?: string;
placeholder?: string;
value?: string;
label?: string;
checked?: boolean;
disabled?: boolean;
id?: string;
}