typescript-closure-tools
Version:
Command-line tools to convert closure-style JSDoc annotations to typescript, and to convert typescript sources to closure externs files
16 lines (12 loc) • 387 B
TypeScript
/// <reference path="../../../globals.d.ts" />
declare module goog.testing.watchers {
/**
* Fires clock reset watching functions.
*/
function signalClockReset(): void;
/**
* Enqueues a function to be called when the clock used for setTimeout is reset.
* @param {function()} fn
*/
function watchClockReset(fn: { (): any /*missing*/ }): void;
}