mirror of
https://github.com/FlipsideCrypto/DefinitelyTyped.git
synced 2026-02-06 19:07:08 +00:00
14 lines
171 B
TypeScript
14 lines
171 B
TypeScript
|
|
import Gently = require('gently');
|
|
|
|
var g = new Gently();
|
|
|
|
g.expect(null, '', () => {
|
|
// ..
|
|
})();
|
|
g.expect(null, '', 0, () => {
|
|
// ..
|
|
})();
|
|
|
|
g.restore(null, '');
|