DefinitelyTyped/gently/gently-tests.ts
2016-04-27 21:53:46 -07:00

14 lines
165 B
TypeScript

import Gently = require('gently');
var g = new Gently();
g.expect(null, '', () => {
// ..
})();
g.expect(null, '', 0, () => {
// ..
})();
g.restore(null, '');