mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
14 lines
165 B
TypeScript
14 lines
165 B
TypeScript
|
|
import Gently = require('gently');
|
|
|
|
var g = new Gently();
|
|
|
|
g.expect(null, '', () => {
|
|
// ..
|
|
})();
|
|
g.expect(null, '', 0, () => {
|
|
// ..
|
|
})();
|
|
|
|
g.restore(null, '');
|