Added missing properties to 'AccWizardOptions' for 'acc-wizard'.

This commit is contained in:
Daniel Rosenwasser
2015-07-30 11:58:49 -07:00
parent 92ad4a9922
commit 08c6a3c8f6
+13 -1
View File
@@ -47,7 +47,19 @@ interface AccWizardOptions {
nextText: string;
/**
* @summary Text for back button
* @summary Text for back button.
* @type {string}
*/
backText: string;
/**
* @summary HTML input type for next button. (default: "submit")
* @type {string}
*/
nextType: string;
/**
* @summary HTML input type for back button. (default: "reset")
* @type {string}
*/
backType: string;