Skip to content

Instantly share code, notes, and snippets.

@tmaslen
Created November 23, 2017 15:50
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tmaslen/3c1409a5a7341741e2f383aaa36f8201 to your computer and use it in GitHub Desktop.
Save tmaslen/3c1409a5a7341741e2f383aaa36f8201 to your computer and use it in GitHub Desktop.
Minimum Typescript definitions for mocha.js
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