Created
November 23, 2017 15:50
-
-
Save tmaslen/3c1409a5a7341741e2f383aaa36f8201 to your computer and use it in GitHub Desktop.
Minimum Typescript definitions for mocha.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
type Callback = () => void; | |
export function describe(description: string, callback: Callback); | |
export function it(description: string, callback: Callback); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment