├── .editorconfig ├── .gitignore ├── .mocharc.yml ├── .npmignore ├── .npmrc ├── .travis.yml ├── .vscode └── launch.json ├── CHANGELOG.md ├── LICENSE ├── README.md ├── exampleProject ├── jsdoc-results.json └── src │ ├── class │ ├── class1.js │ └── class_privateMember.js │ ├── core │ ├── myModule.js │ ├── myModule2.js │ └── myModule3.js │ ├── namespace1 │ └── namespace1.js │ ├── namespace2 │ └── namespace2.js │ └── typedefs.js ├── gruntfile.js ├── package.json ├── src └── core │ ├── Configuration.ts │ ├── Logger.ts │ ├── jsdoc-tsd-parser.ts │ ├── publish-example.ts │ └── publish.ts ├── test ├── callback │ ├── data │ │ └── callback.json │ └── test.parseCallback.ts ├── class │ ├── data │ │ ├── class.json │ │ ├── class_constructorStringParam.json │ │ ├── class_privateMembers.json │ │ ├── emptyClass.js │ │ ├── templateClass.json │ │ └── templateClassWithCustomValue.json │ └── test.parseClass.ts ├── description │ ├── data │ │ ├── description.js │ │ └── description.json │ └── test.parseDescription.ts ├── enum │ ├── data │ │ ├── enum.json │ │ └── enumInNamespace.json │ └── test.parseEnum.ts ├── function │ ├── data │ │ ├── function.json │ │ ├── function_multipleParamTypes.json │ │ ├── function_singleParamType.json │ │ ├── function_twoParamsSecondOptional.json │ │ └── templateFunction.json │ └── test.jsdoc-tsd-parser.ts ├── interface │ ├── data │ │ ├── interface.js │ │ └── interface.json │ └── test.parseInterface.ts ├── jsdoc-helper.ts ├── member │ ├── data │ │ └── classMember.json │ └── test.parseMember.ts ├── module │ ├── data │ │ ├── module.d.ts │ │ ├── module.json │ │ ├── moduledef.js │ │ └── moduleprop.js │ └── test.parseModule.ts ├── namespace │ ├── data │ │ ├── enumInNamespace.js │ │ ├── inlineAnnotation.js │ │ ├── namespace.d.ts │ │ ├── namespace.js │ │ └── namespace.json │ └── test.parse_namespaces.ts ├── overloading │ ├── data │ │ ├── overloading.d.ts │ │ ├── overloading.js │ │ └── overloading.json │ └── test.Overloading.ts ├── propertyParameter │ ├── data │ │ ├── propParams.d.ts │ │ └── propParams.js │ └── test.propParams.ts ├── resolveResult │ ├── data │ │ └── functionInNamespace.json │ ├── results │ │ └── functionInNamespace.d.ts │ └── test.resolveResults.ts ├── test.cmd.ts ├── test.example.ts ├── test.jsdoc-tsd-parser.ts ├── test.output.ts ├── test.since.ts ├── topLevelDeclarations │ ├── data │ │ ├── function_topLevel.js │ │ └── function_topLevel.json │ └── test.topLevelDeclarations.ts ├── tsconfig.json ├── tslint.json ├── typeAlias │ └── test.typeAlias.ts ├── typedef │ ├── data │ │ ├── typedef_string.json │ │ ├── typedefinition.js │ │ └── typedefinition_optional.js │ └── test.typeDefinition.ts ├── typemapping │ ├── data │ │ ├── fourDimensionalStringArray.json │ │ ├── functionWithGenericParameter.json │ │ ├── functionWithGenericReturnValue.json │ │ ├── objectKeyAndPropertyDescription.json │ │ ├── singleStringArray.json │ │ ├── singleUntypedArray.json │ │ ├── threeDimensionalUntypedArray.json │ │ ├── twoDimensionalUnionTypeArray.json │ │ └── twoDimensionalUntypedArray.json │ └── test.typemapping.ts └── versionComparators │ ├── versionComparatorAbc.js │ ├── versionComparatorFalse.js │ └── versionComparatorTrue.js ├── tsconfig.json ├── tslint.json ├── typings ├── dts-jsdoc.d.ts ├── jsdoc.d.ts └── taffydb.d.ts └── yarn.lock /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otris/jsdoc-tsd/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otris/jsdoc-tsd/HEAD/.gitignore -------------------------------------------------------------------------------- /.mocharc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otris/jsdoc-tsd/HEAD/.mocharc.yml -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otris/jsdoc-tsd/HEAD/.npmignore -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otris/jsdoc-tsd/HEAD/.npmrc -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otris/jsdoc-tsd/HEAD/.travis.yml -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otris/jsdoc-tsd/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otris/jsdoc-tsd/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otris/jsdoc-tsd/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otris/jsdoc-tsd/HEAD/README.md -------------------------------------------------------------------------------- /exampleProject/jsdoc-results.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otris/jsdoc-tsd/HEAD/exampleProject/jsdoc-results.json -------------------------------------------------------------------------------- /exampleProject/src/class/class1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otris/jsdoc-tsd/HEAD/exampleProject/src/class/class1.js -------------------------------------------------------------------------------- /exampleProject/src/class/class_privateMember.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otris/jsdoc-tsd/HEAD/exampleProject/src/class/class_privateMember.js -------------------------------------------------------------------------------- /exampleProject/src/core/myModule.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otris/jsdoc-tsd/HEAD/exampleProject/src/core/myModule.js -------------------------------------------------------------------------------- /exampleProject/src/core/myModule2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otris/jsdoc-tsd/HEAD/exampleProject/src/core/myModule2.js -------------------------------------------------------------------------------- /exampleProject/src/core/myModule3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otris/jsdoc-tsd/HEAD/exampleProject/src/core/myModule3.js -------------------------------------------------------------------------------- /exampleProject/src/namespace1/namespace1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otris/jsdoc-tsd/HEAD/exampleProject/src/namespace1/namespace1.js -------------------------------------------------------------------------------- /exampleProject/src/namespace2/namespace2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otris/jsdoc-tsd/HEAD/exampleProject/src/namespace2/namespace2.js -------------------------------------------------------------------------------- /exampleProject/src/typedefs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otris/jsdoc-tsd/HEAD/exampleProject/src/typedefs.js -------------------------------------------------------------------------------- /gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otris/jsdoc-tsd/HEAD/gruntfile.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otris/jsdoc-tsd/HEAD/package.json -------------------------------------------------------------------------------- /src/core/Configuration.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otris/jsdoc-tsd/HEAD/src/core/Configuration.ts -------------------------------------------------------------------------------- /src/core/Logger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otris/jsdoc-tsd/HEAD/src/core/Logger.ts -------------------------------------------------------------------------------- /src/core/jsdoc-tsd-parser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otris/jsdoc-tsd/HEAD/src/core/jsdoc-tsd-parser.ts -------------------------------------------------------------------------------- /src/core/publish-example.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otris/jsdoc-tsd/HEAD/src/core/publish-example.ts -------------------------------------------------------------------------------- /src/core/publish.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otris/jsdoc-tsd/HEAD/src/core/publish.ts -------------------------------------------------------------------------------- /test/callback/data/callback.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otris/jsdoc-tsd/HEAD/test/callback/data/callback.json -------------------------------------------------------------------------------- /test/callback/test.parseCallback.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otris/jsdoc-tsd/HEAD/test/callback/test.parseCallback.ts -------------------------------------------------------------------------------- /test/class/data/class.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otris/jsdoc-tsd/HEAD/test/class/data/class.json -------------------------------------------------------------------------------- /test/class/data/class_constructorStringParam.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otris/jsdoc-tsd/HEAD/test/class/data/class_constructorStringParam.json -------------------------------------------------------------------------------- /test/class/data/class_privateMembers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otris/jsdoc-tsd/HEAD/test/class/data/class_privateMembers.json -------------------------------------------------------------------------------- /test/class/data/emptyClass.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otris/jsdoc-tsd/HEAD/test/class/data/emptyClass.js -------------------------------------------------------------------------------- /test/class/data/templateClass.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otris/jsdoc-tsd/HEAD/test/class/data/templateClass.json -------------------------------------------------------------------------------- /test/class/data/templateClassWithCustomValue.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otris/jsdoc-tsd/HEAD/test/class/data/templateClassWithCustomValue.json -------------------------------------------------------------------------------- /test/class/test.parseClass.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otris/jsdoc-tsd/HEAD/test/class/test.parseClass.ts -------------------------------------------------------------------------------- /test/description/data/description.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otris/jsdoc-tsd/HEAD/test/description/data/description.js -------------------------------------------------------------------------------- /test/description/data/description.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otris/jsdoc-tsd/HEAD/test/description/data/description.json -------------------------------------------------------------------------------- /test/description/test.parseDescription.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otris/jsdoc-tsd/HEAD/test/description/test.parseDescription.ts -------------------------------------------------------------------------------- /test/enum/data/enum.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otris/jsdoc-tsd/HEAD/test/enum/data/enum.json -------------------------------------------------------------------------------- /test/enum/data/enumInNamespace.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otris/jsdoc-tsd/HEAD/test/enum/data/enumInNamespace.json -------------------------------------------------------------------------------- /test/enum/test.parseEnum.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otris/jsdoc-tsd/HEAD/test/enum/test.parseEnum.ts -------------------------------------------------------------------------------- /test/function/data/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otris/jsdoc-tsd/HEAD/test/function/data/function.json -------------------------------------------------------------------------------- /test/function/data/function_multipleParamTypes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otris/jsdoc-tsd/HEAD/test/function/data/function_multipleParamTypes.json -------------------------------------------------------------------------------- /test/function/data/function_singleParamType.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otris/jsdoc-tsd/HEAD/test/function/data/function_singleParamType.json -------------------------------------------------------------------------------- /test/function/data/function_twoParamsSecondOptional.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otris/jsdoc-tsd/HEAD/test/function/data/function_twoParamsSecondOptional.json -------------------------------------------------------------------------------- /test/function/data/templateFunction.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otris/jsdoc-tsd/HEAD/test/function/data/templateFunction.json -------------------------------------------------------------------------------- /test/function/test.jsdoc-tsd-parser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otris/jsdoc-tsd/HEAD/test/function/test.jsdoc-tsd-parser.ts -------------------------------------------------------------------------------- /test/interface/data/interface.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otris/jsdoc-tsd/HEAD/test/interface/data/interface.js -------------------------------------------------------------------------------- /test/interface/data/interface.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otris/jsdoc-tsd/HEAD/test/interface/data/interface.json -------------------------------------------------------------------------------- /test/interface/test.parseInterface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otris/jsdoc-tsd/HEAD/test/interface/test.parseInterface.ts -------------------------------------------------------------------------------- /test/jsdoc-helper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otris/jsdoc-tsd/HEAD/test/jsdoc-helper.ts -------------------------------------------------------------------------------- /test/member/data/classMember.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otris/jsdoc-tsd/HEAD/test/member/data/classMember.json -------------------------------------------------------------------------------- /test/member/test.parseMember.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otris/jsdoc-tsd/HEAD/test/member/test.parseMember.ts -------------------------------------------------------------------------------- /test/module/data/module.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otris/jsdoc-tsd/HEAD/test/module/data/module.d.ts -------------------------------------------------------------------------------- /test/module/data/module.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otris/jsdoc-tsd/HEAD/test/module/data/module.json -------------------------------------------------------------------------------- /test/module/data/moduledef.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otris/jsdoc-tsd/HEAD/test/module/data/moduledef.js -------------------------------------------------------------------------------- /test/module/data/moduleprop.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otris/jsdoc-tsd/HEAD/test/module/data/moduleprop.js -------------------------------------------------------------------------------- /test/module/test.parseModule.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otris/jsdoc-tsd/HEAD/test/module/test.parseModule.ts -------------------------------------------------------------------------------- /test/namespace/data/enumInNamespace.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otris/jsdoc-tsd/HEAD/test/namespace/data/enumInNamespace.js -------------------------------------------------------------------------------- /test/namespace/data/inlineAnnotation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otris/jsdoc-tsd/HEAD/test/namespace/data/inlineAnnotation.js -------------------------------------------------------------------------------- /test/namespace/data/namespace.d.ts: -------------------------------------------------------------------------------- 1 | declare namespace myModule { 2 | const CONSTANT1: number; 3 | 4 | } 5 | 6 | -------------------------------------------------------------------------------- /test/namespace/data/namespace.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otris/jsdoc-tsd/HEAD/test/namespace/data/namespace.js -------------------------------------------------------------------------------- /test/namespace/data/namespace.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otris/jsdoc-tsd/HEAD/test/namespace/data/namespace.json -------------------------------------------------------------------------------- /test/namespace/test.parse_namespaces.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otris/jsdoc-tsd/HEAD/test/namespace/test.parse_namespaces.ts -------------------------------------------------------------------------------- /test/overloading/data/overloading.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otris/jsdoc-tsd/HEAD/test/overloading/data/overloading.d.ts -------------------------------------------------------------------------------- /test/overloading/data/overloading.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otris/jsdoc-tsd/HEAD/test/overloading/data/overloading.js -------------------------------------------------------------------------------- /test/overloading/data/overloading.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otris/jsdoc-tsd/HEAD/test/overloading/data/overloading.json -------------------------------------------------------------------------------- /test/overloading/test.Overloading.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otris/jsdoc-tsd/HEAD/test/overloading/test.Overloading.ts -------------------------------------------------------------------------------- /test/propertyParameter/data/propParams.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otris/jsdoc-tsd/HEAD/test/propertyParameter/data/propParams.d.ts -------------------------------------------------------------------------------- /test/propertyParameter/data/propParams.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otris/jsdoc-tsd/HEAD/test/propertyParameter/data/propParams.js -------------------------------------------------------------------------------- /test/propertyParameter/test.propParams.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otris/jsdoc-tsd/HEAD/test/propertyParameter/test.propParams.ts -------------------------------------------------------------------------------- /test/resolveResult/data/functionInNamespace.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otris/jsdoc-tsd/HEAD/test/resolveResult/data/functionInNamespace.json -------------------------------------------------------------------------------- /test/resolveResult/results/functionInNamespace.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otris/jsdoc-tsd/HEAD/test/resolveResult/results/functionInNamespace.d.ts -------------------------------------------------------------------------------- /test/resolveResult/test.resolveResults.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otris/jsdoc-tsd/HEAD/test/resolveResult/test.resolveResults.ts -------------------------------------------------------------------------------- /test/test.cmd.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otris/jsdoc-tsd/HEAD/test/test.cmd.ts -------------------------------------------------------------------------------- /test/test.example.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otris/jsdoc-tsd/HEAD/test/test.example.ts -------------------------------------------------------------------------------- /test/test.jsdoc-tsd-parser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otris/jsdoc-tsd/HEAD/test/test.jsdoc-tsd-parser.ts -------------------------------------------------------------------------------- /test/test.output.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otris/jsdoc-tsd/HEAD/test/test.output.ts -------------------------------------------------------------------------------- /test/test.since.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otris/jsdoc-tsd/HEAD/test/test.since.ts -------------------------------------------------------------------------------- /test/topLevelDeclarations/data/function_topLevel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otris/jsdoc-tsd/HEAD/test/topLevelDeclarations/data/function_topLevel.js -------------------------------------------------------------------------------- /test/topLevelDeclarations/data/function_topLevel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otris/jsdoc-tsd/HEAD/test/topLevelDeclarations/data/function_topLevel.json -------------------------------------------------------------------------------- /test/topLevelDeclarations/test.topLevelDeclarations.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otris/jsdoc-tsd/HEAD/test/topLevelDeclarations/test.topLevelDeclarations.ts -------------------------------------------------------------------------------- /test/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otris/jsdoc-tsd/HEAD/test/tsconfig.json -------------------------------------------------------------------------------- /test/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otris/jsdoc-tsd/HEAD/test/tslint.json -------------------------------------------------------------------------------- /test/typeAlias/test.typeAlias.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otris/jsdoc-tsd/HEAD/test/typeAlias/test.typeAlias.ts -------------------------------------------------------------------------------- /test/typedef/data/typedef_string.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otris/jsdoc-tsd/HEAD/test/typedef/data/typedef_string.json -------------------------------------------------------------------------------- /test/typedef/data/typedefinition.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otris/jsdoc-tsd/HEAD/test/typedef/data/typedefinition.js -------------------------------------------------------------------------------- /test/typedef/data/typedefinition_optional.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otris/jsdoc-tsd/HEAD/test/typedef/data/typedefinition_optional.js -------------------------------------------------------------------------------- /test/typedef/test.typeDefinition.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otris/jsdoc-tsd/HEAD/test/typedef/test.typeDefinition.ts -------------------------------------------------------------------------------- /test/typemapping/data/fourDimensionalStringArray.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otris/jsdoc-tsd/HEAD/test/typemapping/data/fourDimensionalStringArray.json -------------------------------------------------------------------------------- /test/typemapping/data/functionWithGenericParameter.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otris/jsdoc-tsd/HEAD/test/typemapping/data/functionWithGenericParameter.json -------------------------------------------------------------------------------- /test/typemapping/data/functionWithGenericReturnValue.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otris/jsdoc-tsd/HEAD/test/typemapping/data/functionWithGenericReturnValue.json -------------------------------------------------------------------------------- /test/typemapping/data/objectKeyAndPropertyDescription.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otris/jsdoc-tsd/HEAD/test/typemapping/data/objectKeyAndPropertyDescription.json -------------------------------------------------------------------------------- /test/typemapping/data/singleStringArray.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otris/jsdoc-tsd/HEAD/test/typemapping/data/singleStringArray.json -------------------------------------------------------------------------------- /test/typemapping/data/singleUntypedArray.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otris/jsdoc-tsd/HEAD/test/typemapping/data/singleUntypedArray.json -------------------------------------------------------------------------------- /test/typemapping/data/threeDimensionalUntypedArray.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otris/jsdoc-tsd/HEAD/test/typemapping/data/threeDimensionalUntypedArray.json -------------------------------------------------------------------------------- /test/typemapping/data/twoDimensionalUnionTypeArray.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otris/jsdoc-tsd/HEAD/test/typemapping/data/twoDimensionalUnionTypeArray.json -------------------------------------------------------------------------------- /test/typemapping/data/twoDimensionalUntypedArray.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otris/jsdoc-tsd/HEAD/test/typemapping/data/twoDimensionalUntypedArray.json -------------------------------------------------------------------------------- /test/typemapping/test.typemapping.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otris/jsdoc-tsd/HEAD/test/typemapping/test.typemapping.ts -------------------------------------------------------------------------------- /test/versionComparators/versionComparatorAbc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otris/jsdoc-tsd/HEAD/test/versionComparators/versionComparatorAbc.js -------------------------------------------------------------------------------- /test/versionComparators/versionComparatorFalse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otris/jsdoc-tsd/HEAD/test/versionComparators/versionComparatorFalse.js -------------------------------------------------------------------------------- /test/versionComparators/versionComparatorTrue.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otris/jsdoc-tsd/HEAD/test/versionComparators/versionComparatorTrue.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otris/jsdoc-tsd/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otris/jsdoc-tsd/HEAD/tslint.json -------------------------------------------------------------------------------- /typings/dts-jsdoc.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otris/jsdoc-tsd/HEAD/typings/dts-jsdoc.d.ts -------------------------------------------------------------------------------- /typings/jsdoc.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otris/jsdoc-tsd/HEAD/typings/jsdoc.d.ts -------------------------------------------------------------------------------- /typings/taffydb.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otris/jsdoc-tsd/HEAD/typings/taffydb.d.ts -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otris/jsdoc-tsd/HEAD/yarn.lock --------------------------------------------------------------------------------