mirror of
https://github.com/zhigang1992/DefinitelyTyped.git
synced 2026-05-27 06:22:55 +08:00
Fix return types of currentIndex and navigationLength
This commit is contained in:
3
types/jquery.bootstrap.wizard/index.d.ts
vendored
3
types/jquery.bootstrap.wizard/index.d.ts
vendored
@@ -43,7 +43,8 @@ interface Wizard {
|
||||
|
||||
interface JQuery {
|
||||
bootstrapWizard(options?: WizardOptions): Wizard;
|
||||
bootstrapWizard(method: 'next' | 'previous' | 'first' | 'last' | 'back' | 'finish' | 'finish' | 'currentIndex' | 'navigationLength'): void;
|
||||
bootstrapWizard(method: 'next' | 'previous' | 'first' | 'last' | 'back' | 'finish'): void;
|
||||
bootstrapWizard(method: 'currentIndex' | 'navigationLength'): number;
|
||||
bootstrapWizard(method: 'show', indexOrId: number | string): void;
|
||||
bootstrapWizard(method: 'enable' | 'disable' | 'display' | 'hide', index: number): void;
|
||||
bootstrapWizard(method: 'remove', index: number, removeTabPane?: boolean): void;
|
||||
|
||||
Reference in New Issue
Block a user