├── .gitignore ├── .npmignore ├── LICENSE ├── README.md ├── SECURITY.md ├── baselines ├── expr-Math.d.ts ├── expr-badNames.d.ts ├── expr-builtIns.d.ts ├── expr-overriddenToString.d.ts ├── expr-selfref.d.ts ├── expr-someArray.d.ts ├── expr-someClass.d.ts ├── module-ecurve.d.ts ├── module-fs.d.ts ├── module-jquery.d.ts ├── module-lodash.d.ts ├── module-path.d.ts └── module-yargs.d.ts ├── browser ├── browser.ts └── tsconfig.json ├── docs ├── browser-bundle.js ├── favicon.ico ├── index.html └── style.css ├── lib ├── definitely-typed.ts ├── index.ts ├── names.ts └── run.ts ├── package.json ├── templates ├── global-modifying-module.d.ts ├── global-plugin.d.ts ├── global.d.ts ├── module-class.d.ts ├── module-function.d.ts ├── module-plugin.d.ts └── module.d.ts ├── tests └── test.ts ├── tsconfig.json ├── tslint.json └── webpack.config.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dts-gen/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dts-gen/HEAD/.npmignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dts-gen/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dts-gen/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dts-gen/HEAD/SECURITY.md -------------------------------------------------------------------------------- /baselines/expr-Math.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dts-gen/HEAD/baselines/expr-Math.d.ts -------------------------------------------------------------------------------- /baselines/expr-badNames.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dts-gen/HEAD/baselines/expr-badNames.d.ts -------------------------------------------------------------------------------- /baselines/expr-builtIns.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dts-gen/HEAD/baselines/expr-builtIns.d.ts -------------------------------------------------------------------------------- /baselines/expr-overriddenToString.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dts-gen/HEAD/baselines/expr-overriddenToString.d.ts -------------------------------------------------------------------------------- /baselines/expr-selfref.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dts-gen/HEAD/baselines/expr-selfref.d.ts -------------------------------------------------------------------------------- /baselines/expr-someArray.d.ts: -------------------------------------------------------------------------------- 1 | declare const someArray: number[]; 2 | 3 | -------------------------------------------------------------------------------- /baselines/expr-someClass.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dts-gen/HEAD/baselines/expr-someClass.d.ts -------------------------------------------------------------------------------- /baselines/module-ecurve.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dts-gen/HEAD/baselines/module-ecurve.d.ts -------------------------------------------------------------------------------- /baselines/module-fs.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dts-gen/HEAD/baselines/module-fs.d.ts -------------------------------------------------------------------------------- /baselines/module-jquery.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dts-gen/HEAD/baselines/module-jquery.d.ts -------------------------------------------------------------------------------- /baselines/module-lodash.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dts-gen/HEAD/baselines/module-lodash.d.ts -------------------------------------------------------------------------------- /baselines/module-path.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dts-gen/HEAD/baselines/module-path.d.ts -------------------------------------------------------------------------------- /baselines/module-yargs.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dts-gen/HEAD/baselines/module-yargs.d.ts -------------------------------------------------------------------------------- /browser/browser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dts-gen/HEAD/browser/browser.ts -------------------------------------------------------------------------------- /browser/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dts-gen/HEAD/browser/tsconfig.json -------------------------------------------------------------------------------- /docs/browser-bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dts-gen/HEAD/docs/browser-bundle.js -------------------------------------------------------------------------------- /docs/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dts-gen/HEAD/docs/favicon.ico -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dts-gen/HEAD/docs/index.html -------------------------------------------------------------------------------- /docs/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dts-gen/HEAD/docs/style.css -------------------------------------------------------------------------------- /lib/definitely-typed.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dts-gen/HEAD/lib/definitely-typed.ts -------------------------------------------------------------------------------- /lib/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dts-gen/HEAD/lib/index.ts -------------------------------------------------------------------------------- /lib/names.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dts-gen/HEAD/lib/names.ts -------------------------------------------------------------------------------- /lib/run.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dts-gen/HEAD/lib/run.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dts-gen/HEAD/package.json -------------------------------------------------------------------------------- /templates/global-modifying-module.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dts-gen/HEAD/templates/global-modifying-module.d.ts -------------------------------------------------------------------------------- /templates/global-plugin.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dts-gen/HEAD/templates/global-plugin.d.ts -------------------------------------------------------------------------------- /templates/global.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dts-gen/HEAD/templates/global.d.ts -------------------------------------------------------------------------------- /templates/module-class.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dts-gen/HEAD/templates/module-class.d.ts -------------------------------------------------------------------------------- /templates/module-function.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dts-gen/HEAD/templates/module-function.d.ts -------------------------------------------------------------------------------- /templates/module-plugin.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dts-gen/HEAD/templates/module-plugin.d.ts -------------------------------------------------------------------------------- /templates/module.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dts-gen/HEAD/templates/module.d.ts -------------------------------------------------------------------------------- /tests/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dts-gen/HEAD/tests/test.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dts-gen/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dts-gen/HEAD/tslint.json -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dts-gen/HEAD/webpack.config.js --------------------------------------------------------------------------------