mirror of
https://github.com/wassname/DefinitelyTyped.git
synced 2026-09-09 11:13:57 +08:00
Correcting typings on Tour Buttons
This commit is contained in:
Vendored
+8
-4
@@ -143,7 +143,7 @@ declare module TetherShepherd {
|
||||
title?: string;
|
||||
attachTo?: any;
|
||||
beforeShowPromise?: any;
|
||||
classes?: any;
|
||||
classes?: string;
|
||||
buttons?: IShepherdTourButton[];
|
||||
advanceOn?: any;
|
||||
showCancelLink?: boolean;
|
||||
@@ -156,9 +156,13 @@ declare module TetherShepherd {
|
||||
|
||||
interface IShepherdTourButton {
|
||||
text: string;
|
||||
classes: string[];
|
||||
action?: any;
|
||||
events?: any;
|
||||
classes?: string;
|
||||
action?: Function;
|
||||
events?: IShepherdTourButtonEventHash;
|
||||
}
|
||||
|
||||
interface IShepherdTourButtonEventHash {
|
||||
[Key: string]: Function;
|
||||
}
|
||||
|
||||
interface IShepherdTourAttachProperties {
|
||||
|
||||
Reference in New Issue
Block a user