mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2026-08-11 20:40:20 +00:00
Merge Updates to Knockout and Mocha
This commit is contained in:
Vendored
+1
@@ -394,6 +394,7 @@ interface KnockoutStatic {
|
||||
toJSON(viewModel: any, replacer?: Function, space?: any): string;
|
||||
toJS(viewModel: any): any;
|
||||
isObservable(instance: any): boolean;
|
||||
isWriteableObservable(instance: any): boolean;
|
||||
isComputed(instance: any): boolean;
|
||||
dataFor(node: any): any;
|
||||
removeNode(node: Element);
|
||||
|
||||
Vendored
+3
-3
@@ -12,11 +12,11 @@ declare var describe : {
|
||||
|
||||
declare var it: {
|
||||
(expectation: string, assertion?: () => void): void;
|
||||
(expectation: string, assertion?: (done: (failReason?) => void) => void): void;
|
||||
(expectation: string, assertion?: (done: (error?: Error) => void) => void): void;
|
||||
only(expectation: string, assertion?: () => void): void;
|
||||
only(expectation: string, assertion?: (done: (failReason?) => void) => void): void;
|
||||
only(expectation: string, assertion?: (done: (error?: Error) => void) => void): void;
|
||||
skip(expectation: string, assertion?: () => void): void;
|
||||
skip(expectation: string, assertion?: (done: (failReason?) => void) => void): void;
|
||||
skip(expectation: string, assertion?: (done: (error?: Error) => void) => void): void;
|
||||
timeout(ms: number);
|
||||
};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user