mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2026-03-02 20:52:49 +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, '');
|