mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
first batch: the easy pickings - as per https://github.com/borisyankov/DefinitelyTyped/issues/115 - added DT headers (scraped creators from git history) - added tests - some modifications - added CONTRIBUTORS.md for the substantial defs (>50 LOC)
15 lines
202 B
TypeScript
15 lines
202 B
TypeScript
/// <reference path="gently.d.ts" />
|
|
|
|
import Gently = require('gently');
|
|
|
|
var g = new Gently();
|
|
|
|
g.expect(null, '', () => {
|
|
// ..
|
|
})();
|
|
g.expect(null, '', 0, () => {
|
|
// ..
|
|
})();
|
|
|
|
g.restore(null, '');
|