Big replacement: bool with boolean

This commit is contained in:
Boris Yankov
2013-08-07 16:59:39 +03:00
parent bded8a8af5
commit dd35f69637
128 changed files with 4254 additions and 4240 deletions
+6 -6
View File
@@ -13,12 +13,12 @@ interface WizardOptions {
lastSelector?: string;
onShow?: (activeTab: any, navigation: any, nextIndex: number) => void;
onInit?: (activeTab: any, navigation: any, currentIndex: number) => void;
onNext?: (activeTab: any, navigation: any, nextIndex: number) => bool;
onPrevious?: (activeTab: any, navigation: any, previousIndex: number) => bool;
onLast?: (activeTab: any, navigation: any, lastIndex: number) => bool;
onFirst?: (activeTab: any, navigation: any, firstIndex: number) => bool;
onTabClick?: (activeTab: any, navigation: any, currentIndex: number) => bool;
onTabShow?: (activeTab: any, navigation: any, currentIndex: number) => bool;
onNext?: (activeTab: any, navigation: any, nextIndex: number) => boolean;
onPrevious?: (activeTab: any, navigation: any, previousIndex: number) => boolean;
onLast?: (activeTab: any, navigation: any, lastIndex: number) => boolean;
onFirst?: (activeTab: any, navigation: any, firstIndex: number) => boolean;
onTabClick?: (activeTab: any, navigation: any, currentIndex: number) => boolean;
onTabShow?: (activeTab: any, navigation: any, currentIndex: number) => boolean;
}
interface Wizard {