typescript-closure-tools
Version:
Command-line tools to convert closure-style JSDoc annotations to typescript, and to convert typescript sources to closure externs files
25 lines (19 loc) • 577 B
TypeScript
/// <reference path="../../../globals.d.ts" />
declare module goog.testing {
interface MockInterface {
/**
* Write down all the expected functions that have been called on the
* mock so far. From here on out, future function calls will be
* compared against this list.
*/
$replay(): void;
/**
* Reset the mock.
*/
$reset(): void;
/**
* Assert that the expected function calls match the actual calls.
*/
$verify(): void;
}
}