mirror of
https://github.com/wassname/DefinitelyTyped.git
synced 2026-09-09 11:13:57 +08:00
Merge pull request #887 from ashwinr/master
update d3 and mocha definitions
This commit is contained in:
Vendored
+1
-1
@@ -188,7 +188,7 @@ declare module D3 {
|
||||
*
|
||||
* @param definition 2D affine transform string
|
||||
*/
|
||||
transform(definition: string): any[];
|
||||
transform(definition: string): any;
|
||||
/**
|
||||
* Transpose an array of arrays.
|
||||
*
|
||||
|
||||
Vendored
+11
@@ -3,6 +3,17 @@
|
||||
// Definitions by: Kazi Manzur Rashid <https://github.com/kazimanzurrashid/>
|
||||
// DefinitelyTyped: https://github.com/borisyankov/DefinitelyTyped
|
||||
|
||||
interface Mocha {
|
||||
setup(options: MochaSetupOptions);
|
||||
run(callback: () => void);
|
||||
}
|
||||
|
||||
interface MochaSetupOptions {
|
||||
slow: number;
|
||||
timeout: number;
|
||||
ui: string;
|
||||
}
|
||||
|
||||
declare var describe : {
|
||||
(description: string, spec: () => void): void;
|
||||
only(description: string, spec: () => void): void;
|
||||
|
||||
Reference in New Issue
Block a user