From 5c99b2921a2e024aa61bcbbb14bdcf8c6800f3bf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dennis=20=C3=85hlin?= Date: Fri, 27 Oct 2017 13:47:19 +0200 Subject: [PATCH] Move WizardOptions last --- types/jquery.bootstrap.wizard/index.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/types/jquery.bootstrap.wizard/index.d.ts b/types/jquery.bootstrap.wizard/index.d.ts index 99a494b63e..a84c9ca4c4 100644 --- a/types/jquery.bootstrap.wizard/index.d.ts +++ b/types/jquery.bootstrap.wizard/index.d.ts @@ -42,12 +42,12 @@ interface Wizard { } interface JQuery { - bootstrapWizard(options?: WizardOptions): Wizard; 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; + bootstrapWizard(options?: WizardOptions): Wizard; } interface JQueryStatic {