├── .gitignore ├── .gitmodules ├── .idea ├── compiler.xml ├── kotlinc.xml ├── misc.xml ├── modules.xml ├── runConfigurations │ ├── build.xml │ └── test.xml └── vcs.xml ├── LICENSE ├── README.md ├── common.xml ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── npm.template └── README.md ├── package.json ├── settings.gradle ├── shebang.txt ├── src └── main │ └── kotlin │ ├── converter │ ├── BaseVisitor.kt │ ├── ConverterContext.kt │ ├── KtPackagePartBuilder.kt │ └── typeUtils.kt │ ├── node │ └── node.kt │ ├── ts2kt │ ├── FileSystemBasedLSH.kt │ ├── TsClassToKt.kt │ ├── TsClassifierToKt.kt │ ├── TsInterfaceToKt.kt │ ├── TsInterfaceToKtExtensions.kt │ ├── TypeScriptToKotlin.kt │ ├── TypeScriptToKotlinBase.kt │ ├── Visitor.kt │ ├── converterUtils.kt │ ├── kotlin │ │ └── ast │ │ │ ├── KtVisitor.kt │ │ │ ├── Output.kt │ │ │ ├── Stringify.kt │ │ │ ├── ast.kt │ │ │ └── astUtils.kt │ ├── mappingObjectTypeToKotlinType.kt │ ├── mergeDeclarations.kt │ ├── missedOverloads.kt │ ├── runner.kt │ ├── translate.kt │ ├── typeScriptAstUtils.kt │ └── utils │ │ ├── diagnosticUtils.kt │ │ └── utils.kt │ ├── typescriptServices.kt │ └── typescriptServices │ └── ts │ ├── HighlightSpanKind │ └── typescriptServices.ts.HighlightSpanKind.kt │ ├── ScriptElementKind │ └── typescriptServices.ts.ScriptElementKind.kt │ ├── ScriptElementKindModifier │ └── typescriptServices.ts.ScriptElementKindModifier.kt │ ├── ScriptSnapshot │ └── typescriptServices.ts.ScriptSnapshot.kt │ ├── typescriptServices.ts.internal.kt │ ├── typescriptServices.ts.kt │ └── typescriptServicesSupport.kt ├── test ├── test_runner.js ├── tests │ ├── testData.js │ └── testDefinitelyTyped.js └── utils.js ├── testData ├── Object.d.kt ├── Object.d.ts ├── class │ ├── constructor │ ├── conventions │ │ ├── indexSignature.d.kt │ │ └── indexSignature.d.ts │ ├── exportTypes.d.kt │ ├── exportTypes.d.ts │ ├── generics │ │ ├── generics.d.kt │ │ ├── generics.d.ts │ │ ├── genericsWithConstraint.d.kt │ │ └── genericsWithConstraint.d.ts │ ├── inheritance │ │ ├── overrides.d.kt │ │ ├── overrides.d.ts │ │ ├── simple.d.kt │ │ ├── simple.d.ts │ │ ├── withGeneric.d.kt │ │ └── withGeneric.d.ts │ ├── methods │ │ ├── methodWithComputadName.d.kt │ │ ├── methodWithComputadName.d.ts │ │ ├── methods.d.kt │ │ └── methods.d.ts │ ├── override │ │ ├── anyMembers.d.kt │ │ ├── anyMembers.d.ts │ │ ├── inModule.d.kt │ │ ├── inModule.d.ts │ │ ├── justOverload.d.kt │ │ ├── justOverload.d.ts │ │ ├── overrideMethodOfParentOfParent.d.kt │ │ ├── overrideMethodOfParentOfParent.d.ts │ │ ├── simple.d.kt │ │ ├── simple.d.ts │ │ ├── withDefaultArgs.d.kt │ │ └── withDefaultArgs.d.ts │ ├── static │ │ ├── methods.d.kt │ │ ├── methods.d.ts │ │ ├── variables.d.kt │ │ └── variables.d.ts │ ├── variables │ │ ├── varComputedname.d.kt │ │ ├── varComputedname.d.ts │ │ ├── variables.d.kt │ │ ├── variables.d.ts │ │ ├── withNumberAsName.d.kt │ │ └── withNumberAsName.d.ts │ ├── withoutDeclare.d.kt │ └── withoutDeclare.d.ts ├── enum │ ├── simple.d.kt │ ├── simple.d.ts │ ├── withValues.d.kt │ └── withValues.d.ts ├── escaping.d.kt ├── escaping.d.ts ├── extendExternalDeclarations │ ├── simple.d.kt │ ├── simple.d.ts │ ├── withGenericParams.d.kt │ └── withGenericParams.d.ts ├── import │ ├── importInSupertype.d.kt │ ├── importInSupertype.d.ts │ ├── namespaceImport.d.kt │ ├── namespaceImport.d.ts │ ├── namespaceImportForward.d.kt │ ├── namespaceImportForward.d.ts │ ├── namespaceImportMultiple.d.kt │ └── namespaceImportMultiple.d.ts ├── interface │ ├── conventions │ │ ├── callSignature.d.kt │ │ ├── callSignature.d.ts │ │ ├── indexSignature.d.kt │ │ └── indexSignature.d.ts │ ├── generics │ │ ├── genericOptionalMethods.d.kt │ │ ├── genericOptionalMethods.d.ts │ │ ├── generics.d.kt │ │ ├── generics.d.ts │ │ ├── genericsWithConstraint.d.kt │ │ └── genericsWithConstraint.d.ts │ ├── inheritance │ │ ├── simple.d.kt │ │ ├── simple.d.ts │ │ ├── withGeneric.d.kt │ │ └── withGeneric.d.ts │ ├── methods │ │ ├── methods.d.kt │ │ └── methods.d.ts │ ├── optional │ │ ├── optionalMethods.d.kt │ │ ├── optionalMethods.d.ts │ │ ├── optionalMethodsWithOptionalFunctionType.d.kt │ │ ├── optionalMethodsWithOptionalFunctionType.d.ts │ │ ├── optionalVariables.d.kt │ │ ├── optionalVariables.d.ts │ │ ├── optionalVariablesAsFunctionType.d.kt │ │ └── optionalVariablesAsFunctionType.d.ts │ ├── override │ │ ├── anyMembers.d.kt │ │ ├── anyMembers.d.ts │ │ ├── inModule.d.kt │ │ ├── inModule.d.ts │ │ ├── justOverload.d.kt │ │ ├── justOverload.d.ts │ │ ├── simple.d.kt │ │ └── simple.d.ts │ └── variables │ │ ├── variables.d.kt │ │ ├── variables.d.ts │ │ ├── withNumberAsName.d.kt │ │ └── withNumberAsName.d.ts ├── intersectionType │ ├── simple.d.kt │ └── simple.d.ts ├── mergeDeclarations │ ├── classWithInterface.d.kt │ ├── classWithInterface.d.ts │ ├── interfaceWithClass.d.kt │ ├── interfaceWithClass.d.ts │ ├── interfaces.d.kt │ ├── interfaces.d.ts │ ├── moduleWith │ │ ├── classWhenItContainsClass.d.kt │ │ ├── classWhenItContainsClass.d.ts │ │ ├── classWithStaticMembers.d.kt │ │ ├── classWithStaticMembers.d.ts │ │ ├── function.d.kt │ │ ├── function.d.ts │ │ ├── functionAndSecondaryWithTrait.d.kt │ │ ├── functionAndSecondaryWithTrait.d.ts │ │ ├── module.d.kt │ │ ├── module.d.ts │ │ ├── simpleClass.d.kt │ │ ├── simpleClass.d.ts │ │ ├── simpleInterface.d.kt │ │ └── simpleInterface.d.ts │ └── varWith │ │ ├── emptyInterface.d.kt │ │ ├── emptyInterface.d.ts │ │ ├── interface.d.kt │ │ ├── interface.d.ts │ │ ├── module.d.kt │ │ └── module.d.ts ├── misc │ ├── genericLambdaViaTypeAlias.d.kt │ ├── genericLambdaViaTypeAlias.d.ts │ ├── missedOverloads.d.kt │ ├── missedOverloads.d.ts │ ├── parenthesizedType.d.kt │ ├── parenthesizedType.d.ts │ ├── stringType.d.kt │ ├── stringType.d.ts │ ├── undefinedAndNullTypes.d.kt │ └── undefinedAndNullTypes.d.ts ├── module │ ├── empty │ │ ├── empty.d.kt │ │ ├── empty.d.ts │ │ ├── withStringName.d.kt │ │ └── withStringName.d.ts │ ├── exportAssignment │ │ ├── classFromNestedNamespace.d.kt │ │ ├── classFromNestedNamespace.d.ts │ │ ├── classFromNestedNamespaceOutsideModule.d.kt │ │ ├── classFromNestedNamespaceOutsideModule.d.ts │ │ ├── exportClassFromGlobalModule.d.kt │ │ ├── exportClassFromGlobalModule.d.ts │ │ ├── exportDefaultClassInline.d.kt │ │ ├── exportDefaultClassInline.d.ts │ │ ├── exportDefaultExportedFun.d.kt │ │ ├── exportDefaultExportedFun.d.ts │ │ ├── exportDefaultFun.d.kt │ │ ├── exportDefaultFun.d.ts │ │ ├── exportDefaultInline.d.kt │ │ ├── exportDefaultInline.d.ts │ │ ├── exportDefaultVar.d.kt │ │ ├── exportDefaultVar.d.ts │ │ ├── exportFromExternalModule │ │ │ ├── class.d.kt │ │ │ ├── class.d.ts │ │ │ ├── exportedByDefault.d.kt │ │ │ ├── exportedByDefault.d.ts │ │ │ ├── interface.d.kt │ │ │ ├── interface.d.ts │ │ │ ├── module.d.kt │ │ │ ├── module.d.ts │ │ │ ├── overloadedFunctions.d.kt │ │ │ ├── overloadedFunctions.d.ts │ │ │ ├── var.d.kt │ │ │ └── var.d.ts │ │ ├── exportImportedClass.d.kt │ │ ├── exportImportedClass.d.ts │ │ ├── exportImportedFunction.d.kt │ │ ├── exportImportedFunction.d.ts │ │ ├── exportImportedNamespace.d.kt │ │ ├── exportImportedNamespace.d.ts │ │ ├── exportModuleDeclaredAfter.d.kt │ │ ├── exportModuleDeclaredAfter.d.ts │ │ ├── exportModuleDeclaredBefore.d.kt │ │ ├── exportModuleDeclaredBefore.d.ts │ │ ├── exportModuleWhichNameStartsWithUndescrs.d.kt │ │ ├── exportModuleWhichNameStartsWithUndescrs.d.ts │ │ ├── nestedNamespace.d.kt │ │ ├── nestedNamespace.d.ts │ │ ├── nestedNamespaceOutsideModule.d.kt │ │ ├── nestedNamespaceOutsideModule.d.ts │ │ ├── refToOuterVarAfterModule.d.kt │ │ ├── refToOuterVarAfterModule.d.ts │ │ ├── refToOuterVarBeforeModule.d.kt │ │ ├── refToOuterVarBeforeModule.d.ts │ │ ├── withInterface.d.kt │ │ └── withInterface.d.ts │ ├── nestedModules.d.kt │ ├── nestedModules.d.ts │ ├── nestedModulesWithSameName.d.kt │ ├── nestedModulesWithSameName.d.ts │ ├── referToNonIdentifierModule.d.kt │ ├── referToNonIdentifierModule.d.ts │ ├── withDotInName │ │ ├── simple.d.kt │ │ ├── simple.d.ts │ │ ├── withMerging.d.kt │ │ └── withMerging.d.ts │ ├── withMembers.d.kt │ ├── withMembers.d.ts │ ├── withNonExportDeclarations.d.kt │ ├── withNonExportDeclarations.d.ts │ ├── withNonIdentifierSymbols.d.kt │ ├── withNonIdentifierSymbols.d.ts │ ├── withSlashInName.d.kt │ ├── withSlashInName.d.ts │ ├── withoutDeclare.d.kt │ └── withoutDeclare.d.ts ├── names │ ├── ObjectBindingPattern.d.kt │ └── ObjectBindingPattern.d.ts ├── new │ ├── inTypeLiteral.d.kt │ ├── inTypeLiteral.d.ts │ ├── simple.d.kt │ └── simple.d.ts ├── objectType │ ├── asTypeAlias.d.kt │ ├── asTypeAlias.d.ts │ ├── asTypeAliasInNamespaces.d.kt │ ├── asTypeAliasInNamespaces.d.ts │ ├── constructorParameter.d.kt │ ├── constructorParameter.d.ts │ ├── emptyObjectTypeAsAny.d.kt │ ├── emptyObjectTypeAsAny.d.ts │ ├── function.d.kt │ ├── function.d.ts │ ├── functionIntersectionParameter.d.kt │ ├── functionIntersectionParameter.d.ts │ ├── functionTypedIntersectionParameter.d.kt │ ├── functionTypedIntersectionParameter.d.ts │ ├── genericViaTypeAlias.d.kt │ ├── genericViaTypeAlias.d.ts │ ├── generics.d.kt │ ├── generics.d.ts │ ├── inClassMembers.d.kt │ ├── inClassMembers.d.ts │ ├── inInterface.d.kt │ ├── inInterface.d.ts │ ├── inModuleMembers.d.kt │ ├── inModuleMembers.d.ts │ ├── shareTempTypesBetweenModules.d.kt │ ├── shareTempTypesBetweenModules.d.ts │ ├── useExportedType.d.kt │ ├── useExportedType.d.ts │ ├── useJsonWhenPossible.d.kt │ ├── useJsonWhenPossible.d.ts │ ├── useOneTraitForSameObjectTypes.d.kt │ ├── useOneTraitForSameObjectTypes.d.ts │ ├── var.d.kt │ └── var.d.ts ├── thisType │ ├── inClass.d.kt │ ├── inClass.d.ts │ ├── inInterface.d.kt │ ├── inInterface.d.ts │ ├── inObjectType.d.kt │ ├── inObjectType.d.ts │ ├── withGenericParameters.d.kt │ └── withGenericParameters.d.ts ├── topLevelMembers │ ├── functions │ │ ├── functions.d.kt │ │ ├── functions.d.ts │ │ ├── functionsWithDefaultArguments.d.kt │ │ ├── functionsWithDefaultArguments.d.ts │ │ ├── functionsWithOptionalFunctionType.d.kt │ │ ├── functionsWithOptionalFunctionType.d.ts │ │ ├── functionsWithOptionalParameter.d.kt │ │ ├── functionsWithOptionalParameter.d.ts │ │ ├── functionsWithVararg.d.kt │ │ ├── functionsWithVararg.d.ts │ │ ├── functionsWithoutDeclare.d.kt │ │ └── functionsWithoutDeclare.d.ts │ ├── generics │ │ ├── generics.d.kt │ │ ├── generics.d.ts │ │ ├── genericsWithConstraint.d.kt │ │ └── genericsWithConstraint.d.ts │ └── variables │ │ ├── variableAsFunctionType.d.kt │ │ ├── variableAsFunctionType.d.ts │ │ ├── variables.d.kt │ │ ├── variables.d.ts │ │ ├── variablesAsArray.d.kt │ │ ├── variablesAsArray.d.ts │ │ ├── variablesWithoutDeclare.d.kt │ │ └── variablesWithoutDeclare.d.ts ├── tscEscaping.d.kt ├── tscEscaping.d.ts ├── tuple │ ├── tuple.d.kt │ └── tuple.d.ts ├── typeAlias │ ├── inMergedNamespaces.d.kt │ ├── inMergedNamespaces.d.ts │ ├── recursiveType.d.kt │ ├── recursiveType.d.ts │ ├── resolvedToIntersection.d.kt │ ├── resolvedToIntersection.d.ts │ ├── supertype.d.kt │ ├── supertype.d.ts │ ├── typeParams.d.kt │ ├── typeParams.d.ts │ ├── unionTypeParams.d.kt │ ├── unionTypeParams.d.ts │ ├── useBeforeDeclaration.d.kt │ └── useBeforeDeclaration.d.ts ├── typePredicate │ ├── simple.d.kt │ └── simple.d.ts └── unionType │ ├── aliases.d.kt │ ├── aliases.d.ts │ ├── boom.d.kt │ ├── boom.d.ts │ ├── simple.d.kt │ ├── simple.d.ts │ ├── withNullOrUndefined.d.kt │ └── withNullOrUndefined.d.ts ├── testDefinitelyTyped └── expected │ ├── accounting │ └── accounting.d.kt │ ├── ace │ └── ace.d.kt │ ├── add2home │ └── add2home.d.kt │ ├── alertify │ └── alertify.d.kt │ ├── amcharts │ └── AmCharts.d.kt │ ├── amplifyjs │ └── amplifyjs.d.kt │ ├── angular-agility │ └── angular-agility.d.kt │ ├── angular-translate │ └── angular-translate.d.kt │ ├── angular-ui-bootstrap │ └── angular-ui-bootstrap.d.kt │ ├── angular-ui │ └── angular-ui-router.d.kt │ ├── angularLocalStorage │ └── angularLocalStorage.d.kt │ ├── angularfire │ └── angularfire.d.kt │ ├── ansicolors │ └── ansicolors.d.kt │ ├── appframework │ └── appframework.d.kt │ ├── arbiter │ └── Arbiter.d.kt │ ├── asciify │ └── asciify.d.kt │ ├── assert │ └── assert.d.kt │ ├── assertion-error │ └── assertion-error.d.kt │ ├── async │ └── async.d.kt │ ├── atmosphere │ └── atmosphere.d.kt │ ├── atom │ └── atom.d.kt │ ├── atpl │ └── atpl.d.kt │ ├── auth0.widget │ └── auth0.widget.d.kt │ ├── auth0 │ └── auth0.d.kt │ ├── aws-sdk │ └── aws-sdk.d.kt │ ├── azure-mobile-services-client │ └── AzureMobileServicesClient.d.kt │ ├── backbone-relational │ └── backbone-relational.d.kt │ ├── backbone │ └── backbone.d.kt │ ├── backgrid │ └── backgrid.d.kt │ ├── bgiframe │ └── typescript.bgiframe.d.kt │ ├── big-integer │ └── big-integer.d.kt │ ├── bigscreen │ └── bigscreen.d.kt │ ├── bl │ └── bl.d.kt │ ├── bluebird │ └── bluebird.d.kt │ ├── bootbox │ └── bootbox.d.kt │ ├── bootstrap-notify │ └── bootstrap-notify.d.kt │ ├── bootstrap.datepicker │ └── bootstrap.datepicker.d.kt │ ├── bootstrap.paginator │ └── bootstrap.paginator.d.kt │ ├── bootstrap.timepicker │ └── bootstrap.timepicker.d.kt │ ├── bootstrap.v3.datetimepicker │ └── bootstrap.v3.datetimepicker.d.kt │ ├── bootstrap │ └── bootstrap.d.kt │ ├── box2d │ └── box2dweb.d.kt │ ├── breeze │ └── breeze.d.kt │ ├── browser-harness │ └── browser-harness.d.kt │ ├── browserify │ └── browserify.d.kt │ ├── buffer-equal │ └── buffer-equal.d.kt │ ├── bufferstream │ └── bufferstream.d.kt │ ├── jquery │ ├── jquery.d.kt │ └── useJQ.kt │ └── typescript-services │ └── typescriptServices.d.kt └── ts2kt.iml /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/.gitmodules -------------------------------------------------------------------------------- /.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/.idea/compiler.xml -------------------------------------------------------------------------------- /.idea/kotlinc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/.idea/kotlinc.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/runConfigurations/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/.idea/runConfigurations/build.xml -------------------------------------------------------------------------------- /.idea/runConfigurations/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/.idea/runConfigurations/test.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/README.md -------------------------------------------------------------------------------- /common.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/common.xml -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/gradlew.bat -------------------------------------------------------------------------------- /npm.template/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/npm.template/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/package.json -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/settings.gradle -------------------------------------------------------------------------------- /shebang.txt: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env node 2 | -------------------------------------------------------------------------------- /src/main/kotlin/converter/BaseVisitor.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/src/main/kotlin/converter/BaseVisitor.kt -------------------------------------------------------------------------------- /src/main/kotlin/converter/ConverterContext.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/src/main/kotlin/converter/ConverterContext.kt -------------------------------------------------------------------------------- /src/main/kotlin/converter/KtPackagePartBuilder.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/src/main/kotlin/converter/KtPackagePartBuilder.kt -------------------------------------------------------------------------------- /src/main/kotlin/converter/typeUtils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/src/main/kotlin/converter/typeUtils.kt -------------------------------------------------------------------------------- /src/main/kotlin/node/node.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/src/main/kotlin/node/node.kt -------------------------------------------------------------------------------- /src/main/kotlin/ts2kt/FileSystemBasedLSH.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/src/main/kotlin/ts2kt/FileSystemBasedLSH.kt -------------------------------------------------------------------------------- /src/main/kotlin/ts2kt/TsClassToKt.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/src/main/kotlin/ts2kt/TsClassToKt.kt -------------------------------------------------------------------------------- /src/main/kotlin/ts2kt/TsClassifierToKt.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/src/main/kotlin/ts2kt/TsClassifierToKt.kt -------------------------------------------------------------------------------- /src/main/kotlin/ts2kt/TsInterfaceToKt.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/src/main/kotlin/ts2kt/TsInterfaceToKt.kt -------------------------------------------------------------------------------- /src/main/kotlin/ts2kt/TsInterfaceToKtExtensions.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/src/main/kotlin/ts2kt/TsInterfaceToKtExtensions.kt -------------------------------------------------------------------------------- /src/main/kotlin/ts2kt/TypeScriptToKotlin.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/src/main/kotlin/ts2kt/TypeScriptToKotlin.kt -------------------------------------------------------------------------------- /src/main/kotlin/ts2kt/TypeScriptToKotlinBase.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/src/main/kotlin/ts2kt/TypeScriptToKotlinBase.kt -------------------------------------------------------------------------------- /src/main/kotlin/ts2kt/Visitor.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/src/main/kotlin/ts2kt/Visitor.kt -------------------------------------------------------------------------------- /src/main/kotlin/ts2kt/converterUtils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/src/main/kotlin/ts2kt/converterUtils.kt -------------------------------------------------------------------------------- /src/main/kotlin/ts2kt/kotlin/ast/KtVisitor.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/src/main/kotlin/ts2kt/kotlin/ast/KtVisitor.kt -------------------------------------------------------------------------------- /src/main/kotlin/ts2kt/kotlin/ast/Output.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/src/main/kotlin/ts2kt/kotlin/ast/Output.kt -------------------------------------------------------------------------------- /src/main/kotlin/ts2kt/kotlin/ast/Stringify.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/src/main/kotlin/ts2kt/kotlin/ast/Stringify.kt -------------------------------------------------------------------------------- /src/main/kotlin/ts2kt/kotlin/ast/ast.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/src/main/kotlin/ts2kt/kotlin/ast/ast.kt -------------------------------------------------------------------------------- /src/main/kotlin/ts2kt/kotlin/ast/astUtils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/src/main/kotlin/ts2kt/kotlin/ast/astUtils.kt -------------------------------------------------------------------------------- /src/main/kotlin/ts2kt/mappingObjectTypeToKotlinType.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/src/main/kotlin/ts2kt/mappingObjectTypeToKotlinType.kt -------------------------------------------------------------------------------- /src/main/kotlin/ts2kt/mergeDeclarations.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/src/main/kotlin/ts2kt/mergeDeclarations.kt -------------------------------------------------------------------------------- /src/main/kotlin/ts2kt/missedOverloads.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/src/main/kotlin/ts2kt/missedOverloads.kt -------------------------------------------------------------------------------- /src/main/kotlin/ts2kt/runner.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/src/main/kotlin/ts2kt/runner.kt -------------------------------------------------------------------------------- /src/main/kotlin/ts2kt/translate.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/src/main/kotlin/ts2kt/translate.kt -------------------------------------------------------------------------------- /src/main/kotlin/ts2kt/typeScriptAstUtils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/src/main/kotlin/ts2kt/typeScriptAstUtils.kt -------------------------------------------------------------------------------- /src/main/kotlin/ts2kt/utils/diagnosticUtils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/src/main/kotlin/ts2kt/utils/diagnosticUtils.kt -------------------------------------------------------------------------------- /src/main/kotlin/ts2kt/utils/utils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/src/main/kotlin/ts2kt/utils/utils.kt -------------------------------------------------------------------------------- /src/main/kotlin/typescriptServices.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/src/main/kotlin/typescriptServices.kt -------------------------------------------------------------------------------- /src/main/kotlin/typescriptServices/ts/HighlightSpanKind/typescriptServices.ts.HighlightSpanKind.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/src/main/kotlin/typescriptServices/ts/HighlightSpanKind/typescriptServices.ts.HighlightSpanKind.kt -------------------------------------------------------------------------------- /src/main/kotlin/typescriptServices/ts/ScriptElementKind/typescriptServices.ts.ScriptElementKind.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/src/main/kotlin/typescriptServices/ts/ScriptElementKind/typescriptServices.ts.ScriptElementKind.kt -------------------------------------------------------------------------------- /src/main/kotlin/typescriptServices/ts/ScriptElementKindModifier/typescriptServices.ts.ScriptElementKindModifier.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/src/main/kotlin/typescriptServices/ts/ScriptElementKindModifier/typescriptServices.ts.ScriptElementKindModifier.kt -------------------------------------------------------------------------------- /src/main/kotlin/typescriptServices/ts/ScriptSnapshot/typescriptServices.ts.ScriptSnapshot.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/src/main/kotlin/typescriptServices/ts/ScriptSnapshot/typescriptServices.ts.ScriptSnapshot.kt -------------------------------------------------------------------------------- /src/main/kotlin/typescriptServices/ts/typescriptServices.ts.internal.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/src/main/kotlin/typescriptServices/ts/typescriptServices.ts.internal.kt -------------------------------------------------------------------------------- /src/main/kotlin/typescriptServices/ts/typescriptServices.ts.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/src/main/kotlin/typescriptServices/ts/typescriptServices.ts.kt -------------------------------------------------------------------------------- /src/main/kotlin/typescriptServices/ts/typescriptServicesSupport.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/src/main/kotlin/typescriptServices/ts/typescriptServicesSupport.kt -------------------------------------------------------------------------------- /test/test_runner.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/test/test_runner.js -------------------------------------------------------------------------------- /test/tests/testData.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/test/tests/testData.js -------------------------------------------------------------------------------- /test/tests/testDefinitelyTyped.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/test/tests/testDefinitelyTyped.js -------------------------------------------------------------------------------- /test/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/test/utils.js -------------------------------------------------------------------------------- /testData/Object.d.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/testData/Object.d.kt -------------------------------------------------------------------------------- /testData/Object.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/testData/Object.d.ts -------------------------------------------------------------------------------- /testData/class/constructor/simple.d.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/testData/class/constructor/simple.d.kt -------------------------------------------------------------------------------- /testData/class/constructor/simple.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/testData/class/constructor/simple.d.ts -------------------------------------------------------------------------------- /testData/class/constructor/withPropertyDeclaration.d.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/testData/class/constructor/withPropertyDeclaration.d.kt -------------------------------------------------------------------------------- /testData/class/constructor/withPropertyDeclaration.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/testData/class/constructor/withPropertyDeclaration.d.ts -------------------------------------------------------------------------------- /testData/class/conventions/indexSignature.d.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/testData/class/conventions/indexSignature.d.kt -------------------------------------------------------------------------------- /testData/class/conventions/indexSignature.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/testData/class/conventions/indexSignature.d.ts -------------------------------------------------------------------------------- /testData/class/exportTypes.d.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/testData/class/exportTypes.d.kt -------------------------------------------------------------------------------- /testData/class/exportTypes.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/testData/class/exportTypes.d.ts -------------------------------------------------------------------------------- /testData/class/generics/generics.d.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/testData/class/generics/generics.d.kt -------------------------------------------------------------------------------- /testData/class/generics/generics.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/testData/class/generics/generics.d.ts -------------------------------------------------------------------------------- /testData/class/generics/genericsWithConstraint.d.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/testData/class/generics/genericsWithConstraint.d.kt -------------------------------------------------------------------------------- /testData/class/generics/genericsWithConstraint.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/testData/class/generics/genericsWithConstraint.d.ts -------------------------------------------------------------------------------- /testData/class/inheritance/overrides.d.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/testData/class/inheritance/overrides.d.kt -------------------------------------------------------------------------------- /testData/class/inheritance/overrides.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/testData/class/inheritance/overrides.d.ts -------------------------------------------------------------------------------- /testData/class/inheritance/simple.d.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/testData/class/inheritance/simple.d.kt -------------------------------------------------------------------------------- /testData/class/inheritance/simple.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/testData/class/inheritance/simple.d.ts -------------------------------------------------------------------------------- /testData/class/inheritance/withGeneric.d.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/testData/class/inheritance/withGeneric.d.kt -------------------------------------------------------------------------------- /testData/class/inheritance/withGeneric.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/testData/class/inheritance/withGeneric.d.ts -------------------------------------------------------------------------------- /testData/class/methods/methodWithComputadName.d.kt: -------------------------------------------------------------------------------- 1 | package methodWithComputadName 2 | 3 | external open class Foo 4 | -------------------------------------------------------------------------------- /testData/class/methods/methodWithComputadName.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/testData/class/methods/methodWithComputadName.d.ts -------------------------------------------------------------------------------- /testData/class/methods/methods.d.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/testData/class/methods/methods.d.kt -------------------------------------------------------------------------------- /testData/class/methods/methods.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/testData/class/methods/methods.d.ts -------------------------------------------------------------------------------- /testData/class/override/anyMembers.d.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/testData/class/override/anyMembers.d.kt -------------------------------------------------------------------------------- /testData/class/override/anyMembers.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/testData/class/override/anyMembers.d.ts -------------------------------------------------------------------------------- /testData/class/override/inModule.d.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/testData/class/override/inModule.d.kt -------------------------------------------------------------------------------- /testData/class/override/inModule.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/testData/class/override/inModule.d.ts -------------------------------------------------------------------------------- /testData/class/override/justOverload.d.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/testData/class/override/justOverload.d.kt -------------------------------------------------------------------------------- /testData/class/override/justOverload.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/testData/class/override/justOverload.d.ts -------------------------------------------------------------------------------- /testData/class/override/overrideMethodOfParentOfParent.d.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/testData/class/override/overrideMethodOfParentOfParent.d.kt -------------------------------------------------------------------------------- /testData/class/override/overrideMethodOfParentOfParent.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/testData/class/override/overrideMethodOfParentOfParent.d.ts -------------------------------------------------------------------------------- /testData/class/override/simple.d.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/testData/class/override/simple.d.kt -------------------------------------------------------------------------------- /testData/class/override/simple.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/testData/class/override/simple.d.ts -------------------------------------------------------------------------------- /testData/class/override/withDefaultArgs.d.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/testData/class/override/withDefaultArgs.d.kt -------------------------------------------------------------------------------- /testData/class/override/withDefaultArgs.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/testData/class/override/withDefaultArgs.d.ts -------------------------------------------------------------------------------- /testData/class/static/methods.d.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/testData/class/static/methods.d.kt -------------------------------------------------------------------------------- /testData/class/static/methods.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/testData/class/static/methods.d.ts -------------------------------------------------------------------------------- /testData/class/static/variables.d.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/testData/class/static/variables.d.kt -------------------------------------------------------------------------------- /testData/class/static/variables.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/testData/class/static/variables.d.ts -------------------------------------------------------------------------------- /testData/class/variables/varComputedname.d.kt: -------------------------------------------------------------------------------- 1 | package varComputedname 2 | 3 | external open class Foo 4 | -------------------------------------------------------------------------------- /testData/class/variables/varComputedname.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/testData/class/variables/varComputedname.d.ts -------------------------------------------------------------------------------- /testData/class/variables/variables.d.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/testData/class/variables/variables.d.kt -------------------------------------------------------------------------------- /testData/class/variables/variables.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/testData/class/variables/variables.d.ts -------------------------------------------------------------------------------- /testData/class/variables/withNumberAsName.d.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/testData/class/variables/withNumberAsName.d.kt -------------------------------------------------------------------------------- /testData/class/variables/withNumberAsName.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/testData/class/variables/withNumberAsName.d.ts -------------------------------------------------------------------------------- /testData/class/withoutDeclare.d.kt: -------------------------------------------------------------------------------- 1 | // NO DECLARATIONS -------------------------------------------------------------------------------- /testData/class/withoutDeclare.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/testData/class/withoutDeclare.d.ts -------------------------------------------------------------------------------- /testData/enum/simple.d.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/testData/enum/simple.d.kt -------------------------------------------------------------------------------- /testData/enum/simple.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/testData/enum/simple.d.ts -------------------------------------------------------------------------------- /testData/enum/withValues.d.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/testData/enum/withValues.d.kt -------------------------------------------------------------------------------- /testData/enum/withValues.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/testData/enum/withValues.d.ts -------------------------------------------------------------------------------- /testData/escaping.d.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/testData/escaping.d.kt -------------------------------------------------------------------------------- /testData/escaping.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/testData/escaping.d.ts -------------------------------------------------------------------------------- /testData/extendExternalDeclarations/simple.d.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/testData/extendExternalDeclarations/simple.d.kt -------------------------------------------------------------------------------- /testData/extendExternalDeclarations/simple.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/testData/extendExternalDeclarations/simple.d.ts -------------------------------------------------------------------------------- /testData/extendExternalDeclarations/withGenericParams.d.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/testData/extendExternalDeclarations/withGenericParams.d.kt -------------------------------------------------------------------------------- /testData/extendExternalDeclarations/withGenericParams.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/testData/extendExternalDeclarations/withGenericParams.d.ts -------------------------------------------------------------------------------- /testData/import/importInSupertype.d.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/testData/import/importInSupertype.d.kt -------------------------------------------------------------------------------- /testData/import/importInSupertype.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/testData/import/importInSupertype.d.ts -------------------------------------------------------------------------------- /testData/import/namespaceImport.d.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/testData/import/namespaceImport.d.kt -------------------------------------------------------------------------------- /testData/import/namespaceImport.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/testData/import/namespaceImport.d.ts -------------------------------------------------------------------------------- /testData/import/namespaceImportForward.d.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/testData/import/namespaceImportForward.d.kt -------------------------------------------------------------------------------- /testData/import/namespaceImportForward.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/testData/import/namespaceImportForward.d.ts -------------------------------------------------------------------------------- /testData/import/namespaceImportMultiple.d.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/testData/import/namespaceImportMultiple.d.kt -------------------------------------------------------------------------------- /testData/import/namespaceImportMultiple.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/testData/import/namespaceImportMultiple.d.ts -------------------------------------------------------------------------------- /testData/interface/conventions/callSignature.d.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/testData/interface/conventions/callSignature.d.kt -------------------------------------------------------------------------------- /testData/interface/conventions/callSignature.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/testData/interface/conventions/callSignature.d.ts -------------------------------------------------------------------------------- /testData/interface/conventions/indexSignature.d.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/testData/interface/conventions/indexSignature.d.kt -------------------------------------------------------------------------------- /testData/interface/conventions/indexSignature.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/testData/interface/conventions/indexSignature.d.ts -------------------------------------------------------------------------------- /testData/interface/generics/genericOptionalMethods.d.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/testData/interface/generics/genericOptionalMethods.d.kt -------------------------------------------------------------------------------- /testData/interface/generics/genericOptionalMethods.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/testData/interface/generics/genericOptionalMethods.d.ts -------------------------------------------------------------------------------- /testData/interface/generics/generics.d.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/testData/interface/generics/generics.d.kt -------------------------------------------------------------------------------- /testData/interface/generics/generics.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/testData/interface/generics/generics.d.ts -------------------------------------------------------------------------------- /testData/interface/generics/genericsWithConstraint.d.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/testData/interface/generics/genericsWithConstraint.d.kt -------------------------------------------------------------------------------- /testData/interface/generics/genericsWithConstraint.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/testData/interface/generics/genericsWithConstraint.d.ts -------------------------------------------------------------------------------- /testData/interface/inheritance/simple.d.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/testData/interface/inheritance/simple.d.kt -------------------------------------------------------------------------------- /testData/interface/inheritance/simple.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/testData/interface/inheritance/simple.d.ts -------------------------------------------------------------------------------- /testData/interface/inheritance/withGeneric.d.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/testData/interface/inheritance/withGeneric.d.kt -------------------------------------------------------------------------------- /testData/interface/inheritance/withGeneric.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/testData/interface/inheritance/withGeneric.d.ts -------------------------------------------------------------------------------- /testData/interface/methods/methods.d.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/testData/interface/methods/methods.d.kt -------------------------------------------------------------------------------- /testData/interface/methods/methods.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/testData/interface/methods/methods.d.ts -------------------------------------------------------------------------------- /testData/interface/optional/optionalMethods.d.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/testData/interface/optional/optionalMethods.d.kt -------------------------------------------------------------------------------- /testData/interface/optional/optionalMethods.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/testData/interface/optional/optionalMethods.d.ts -------------------------------------------------------------------------------- /testData/interface/optional/optionalMethodsWithOptionalFunctionType.d.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/testData/interface/optional/optionalMethodsWithOptionalFunctionType.d.kt -------------------------------------------------------------------------------- /testData/interface/optional/optionalMethodsWithOptionalFunctionType.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/testData/interface/optional/optionalMethodsWithOptionalFunctionType.d.ts -------------------------------------------------------------------------------- /testData/interface/optional/optionalVariables.d.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/testData/interface/optional/optionalVariables.d.kt -------------------------------------------------------------------------------- /testData/interface/optional/optionalVariables.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/testData/interface/optional/optionalVariables.d.ts -------------------------------------------------------------------------------- /testData/interface/optional/optionalVariablesAsFunctionType.d.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/testData/interface/optional/optionalVariablesAsFunctionType.d.kt -------------------------------------------------------------------------------- /testData/interface/optional/optionalVariablesAsFunctionType.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/testData/interface/optional/optionalVariablesAsFunctionType.d.ts -------------------------------------------------------------------------------- /testData/interface/override/anyMembers.d.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/testData/interface/override/anyMembers.d.kt -------------------------------------------------------------------------------- /testData/interface/override/anyMembers.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/testData/interface/override/anyMembers.d.ts -------------------------------------------------------------------------------- /testData/interface/override/inModule.d.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/testData/interface/override/inModule.d.kt -------------------------------------------------------------------------------- /testData/interface/override/inModule.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/testData/interface/override/inModule.d.ts -------------------------------------------------------------------------------- /testData/interface/override/justOverload.d.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/testData/interface/override/justOverload.d.kt -------------------------------------------------------------------------------- /testData/interface/override/justOverload.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/testData/interface/override/justOverload.d.ts -------------------------------------------------------------------------------- /testData/interface/override/simple.d.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/testData/interface/override/simple.d.kt -------------------------------------------------------------------------------- /testData/interface/override/simple.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/testData/interface/override/simple.d.ts -------------------------------------------------------------------------------- /testData/interface/variables/variables.d.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/testData/interface/variables/variables.d.kt -------------------------------------------------------------------------------- /testData/interface/variables/variables.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/testData/interface/variables/variables.d.ts -------------------------------------------------------------------------------- /testData/interface/variables/withNumberAsName.d.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/testData/interface/variables/withNumberAsName.d.kt -------------------------------------------------------------------------------- /testData/interface/variables/withNumberAsName.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/testData/interface/variables/withNumberAsName.d.ts -------------------------------------------------------------------------------- /testData/intersectionType/simple.d.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/testData/intersectionType/simple.d.kt -------------------------------------------------------------------------------- /testData/intersectionType/simple.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/testData/intersectionType/simple.d.ts -------------------------------------------------------------------------------- /testData/mergeDeclarations/classWithInterface.d.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/testData/mergeDeclarations/classWithInterface.d.kt -------------------------------------------------------------------------------- /testData/mergeDeclarations/classWithInterface.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/testData/mergeDeclarations/classWithInterface.d.ts -------------------------------------------------------------------------------- /testData/mergeDeclarations/interfaceWithClass.d.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/testData/mergeDeclarations/interfaceWithClass.d.kt -------------------------------------------------------------------------------- /testData/mergeDeclarations/interfaceWithClass.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/testData/mergeDeclarations/interfaceWithClass.d.ts -------------------------------------------------------------------------------- /testData/mergeDeclarations/interfaces.d.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/testData/mergeDeclarations/interfaces.d.kt -------------------------------------------------------------------------------- /testData/mergeDeclarations/interfaces.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/testData/mergeDeclarations/interfaces.d.ts -------------------------------------------------------------------------------- /testData/mergeDeclarations/moduleWith/classWhenItContainsClass.d.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/testData/mergeDeclarations/moduleWith/classWhenItContainsClass.d.kt -------------------------------------------------------------------------------- /testData/mergeDeclarations/moduleWith/classWhenItContainsClass.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/testData/mergeDeclarations/moduleWith/classWhenItContainsClass.d.ts -------------------------------------------------------------------------------- /testData/mergeDeclarations/moduleWith/classWithStaticMembers.d.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/testData/mergeDeclarations/moduleWith/classWithStaticMembers.d.kt -------------------------------------------------------------------------------- /testData/mergeDeclarations/moduleWith/classWithStaticMembers.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/testData/mergeDeclarations/moduleWith/classWithStaticMembers.d.ts -------------------------------------------------------------------------------- /testData/mergeDeclarations/moduleWith/function.d.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/testData/mergeDeclarations/moduleWith/function.d.kt -------------------------------------------------------------------------------- /testData/mergeDeclarations/moduleWith/function.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/testData/mergeDeclarations/moduleWith/function.d.ts -------------------------------------------------------------------------------- /testData/mergeDeclarations/moduleWith/functionAndSecondaryWithTrait.d.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/testData/mergeDeclarations/moduleWith/functionAndSecondaryWithTrait.d.kt -------------------------------------------------------------------------------- /testData/mergeDeclarations/moduleWith/functionAndSecondaryWithTrait.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/testData/mergeDeclarations/moduleWith/functionAndSecondaryWithTrait.d.ts -------------------------------------------------------------------------------- /testData/mergeDeclarations/moduleWith/module.d.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/testData/mergeDeclarations/moduleWith/module.d.kt -------------------------------------------------------------------------------- /testData/mergeDeclarations/moduleWith/module.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/testData/mergeDeclarations/moduleWith/module.d.ts -------------------------------------------------------------------------------- /testData/mergeDeclarations/moduleWith/simpleClass.d.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/testData/mergeDeclarations/moduleWith/simpleClass.d.kt -------------------------------------------------------------------------------- /testData/mergeDeclarations/moduleWith/simpleClass.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/testData/mergeDeclarations/moduleWith/simpleClass.d.ts -------------------------------------------------------------------------------- /testData/mergeDeclarations/moduleWith/simpleInterface.d.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/testData/mergeDeclarations/moduleWith/simpleInterface.d.kt -------------------------------------------------------------------------------- /testData/mergeDeclarations/moduleWith/simpleInterface.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/testData/mergeDeclarations/moduleWith/simpleInterface.d.ts -------------------------------------------------------------------------------- /testData/mergeDeclarations/varWith/emptyInterface.d.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/testData/mergeDeclarations/varWith/emptyInterface.d.kt -------------------------------------------------------------------------------- /testData/mergeDeclarations/varWith/emptyInterface.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/testData/mergeDeclarations/varWith/emptyInterface.d.ts -------------------------------------------------------------------------------- /testData/mergeDeclarations/varWith/interface.d.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/testData/mergeDeclarations/varWith/interface.d.kt -------------------------------------------------------------------------------- /testData/mergeDeclarations/varWith/interface.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/testData/mergeDeclarations/varWith/interface.d.ts -------------------------------------------------------------------------------- /testData/mergeDeclarations/varWith/module.d.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/testData/mergeDeclarations/varWith/module.d.kt -------------------------------------------------------------------------------- /testData/mergeDeclarations/varWith/module.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/testData/mergeDeclarations/varWith/module.d.ts -------------------------------------------------------------------------------- /testData/misc/genericLambdaViaTypeAlias.d.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/testData/misc/genericLambdaViaTypeAlias.d.kt -------------------------------------------------------------------------------- /testData/misc/genericLambdaViaTypeAlias.d.ts: -------------------------------------------------------------------------------- 1 | type A = (x: T) => T 2 | 3 | declare var foo: A; -------------------------------------------------------------------------------- /testData/misc/missedOverloads.d.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/testData/misc/missedOverloads.d.kt -------------------------------------------------------------------------------- /testData/misc/missedOverloads.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/testData/misc/missedOverloads.d.ts -------------------------------------------------------------------------------- /testData/misc/parenthesizedType.d.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/testData/misc/parenthesizedType.d.kt -------------------------------------------------------------------------------- /testData/misc/parenthesizedType.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/testData/misc/parenthesizedType.d.ts -------------------------------------------------------------------------------- /testData/misc/stringType.d.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/testData/misc/stringType.d.kt -------------------------------------------------------------------------------- /testData/misc/stringType.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/testData/misc/stringType.d.ts -------------------------------------------------------------------------------- /testData/misc/undefinedAndNullTypes.d.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/testData/misc/undefinedAndNullTypes.d.kt -------------------------------------------------------------------------------- /testData/misc/undefinedAndNullTypes.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/testData/misc/undefinedAndNullTypes.d.ts -------------------------------------------------------------------------------- /testData/module/empty/empty.d.kt: -------------------------------------------------------------------------------- 1 | // NO DECLARATIONS -------------------------------------------------------------------------------- /testData/module/empty/empty.d.ts: -------------------------------------------------------------------------------- 1 | declare module D3 { 2 | } 3 | 4 | -------------------------------------------------------------------------------- /testData/module/empty/withStringName.d.kt: -------------------------------------------------------------------------------- 1 | // NO DECLARATIONS -------------------------------------------------------------------------------- /testData/module/empty/withStringName.d.ts: -------------------------------------------------------------------------------- 1 | declare module "jquery" { 2 | } 3 | -------------------------------------------------------------------------------- /testData/module/exportAssignment/classFromNestedNamespace.d.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/testData/module/exportAssignment/classFromNestedNamespace.d.kt -------------------------------------------------------------------------------- /testData/module/exportAssignment/classFromNestedNamespace.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/testData/module/exportAssignment/classFromNestedNamespace.d.ts -------------------------------------------------------------------------------- /testData/module/exportAssignment/classFromNestedNamespaceOutsideModule.d.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/testData/module/exportAssignment/classFromNestedNamespaceOutsideModule.d.kt -------------------------------------------------------------------------------- /testData/module/exportAssignment/classFromNestedNamespaceOutsideModule.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/testData/module/exportAssignment/classFromNestedNamespaceOutsideModule.d.ts -------------------------------------------------------------------------------- /testData/module/exportAssignment/exportClassFromGlobalModule.d.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/testData/module/exportAssignment/exportClassFromGlobalModule.d.kt -------------------------------------------------------------------------------- /testData/module/exportAssignment/exportClassFromGlobalModule.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/testData/module/exportAssignment/exportClassFromGlobalModule.d.ts -------------------------------------------------------------------------------- /testData/module/exportAssignment/exportDefaultClassInline.d.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/testData/module/exportAssignment/exportDefaultClassInline.d.kt -------------------------------------------------------------------------------- /testData/module/exportAssignment/exportDefaultClassInline.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/testData/module/exportAssignment/exportDefaultClassInline.d.ts -------------------------------------------------------------------------------- /testData/module/exportAssignment/exportDefaultExportedFun.d.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/testData/module/exportAssignment/exportDefaultExportedFun.d.kt -------------------------------------------------------------------------------- /testData/module/exportAssignment/exportDefaultExportedFun.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/testData/module/exportAssignment/exportDefaultExportedFun.d.ts -------------------------------------------------------------------------------- /testData/module/exportAssignment/exportDefaultFun.d.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/testData/module/exportAssignment/exportDefaultFun.d.kt -------------------------------------------------------------------------------- /testData/module/exportAssignment/exportDefaultFun.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/testData/module/exportAssignment/exportDefaultFun.d.ts -------------------------------------------------------------------------------- /testData/module/exportAssignment/exportDefaultInline.d.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/testData/module/exportAssignment/exportDefaultInline.d.kt -------------------------------------------------------------------------------- /testData/module/exportAssignment/exportDefaultInline.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/testData/module/exportAssignment/exportDefaultInline.d.ts -------------------------------------------------------------------------------- /testData/module/exportAssignment/exportDefaultVar.d.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/testData/module/exportAssignment/exportDefaultVar.d.kt -------------------------------------------------------------------------------- /testData/module/exportAssignment/exportDefaultVar.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/testData/module/exportAssignment/exportDefaultVar.d.ts -------------------------------------------------------------------------------- /testData/module/exportAssignment/exportFromExternalModule/class.d.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/testData/module/exportAssignment/exportFromExternalModule/class.d.kt -------------------------------------------------------------------------------- /testData/module/exportAssignment/exportFromExternalModule/class.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/testData/module/exportAssignment/exportFromExternalModule/class.d.ts -------------------------------------------------------------------------------- /testData/module/exportAssignment/exportFromExternalModule/exportedByDefault.d.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/testData/module/exportAssignment/exportFromExternalModule/exportedByDefault.d.kt -------------------------------------------------------------------------------- /testData/module/exportAssignment/exportFromExternalModule/exportedByDefault.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/testData/module/exportAssignment/exportFromExternalModule/exportedByDefault.d.ts -------------------------------------------------------------------------------- /testData/module/exportAssignment/exportFromExternalModule/interface.d.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/testData/module/exportAssignment/exportFromExternalModule/interface.d.kt -------------------------------------------------------------------------------- /testData/module/exportAssignment/exportFromExternalModule/interface.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/testData/module/exportAssignment/exportFromExternalModule/interface.d.ts -------------------------------------------------------------------------------- /testData/module/exportAssignment/exportFromExternalModule/module.d.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/testData/module/exportAssignment/exportFromExternalModule/module.d.kt -------------------------------------------------------------------------------- /testData/module/exportAssignment/exportFromExternalModule/module.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/testData/module/exportAssignment/exportFromExternalModule/module.d.ts -------------------------------------------------------------------------------- /testData/module/exportAssignment/exportFromExternalModule/overloadedFunctions.d.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/testData/module/exportAssignment/exportFromExternalModule/overloadedFunctions.d.kt -------------------------------------------------------------------------------- /testData/module/exportAssignment/exportFromExternalModule/overloadedFunctions.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/testData/module/exportAssignment/exportFromExternalModule/overloadedFunctions.d.ts -------------------------------------------------------------------------------- /testData/module/exportAssignment/exportFromExternalModule/var.d.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/testData/module/exportAssignment/exportFromExternalModule/var.d.kt -------------------------------------------------------------------------------- /testData/module/exportAssignment/exportFromExternalModule/var.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/testData/module/exportAssignment/exportFromExternalModule/var.d.ts -------------------------------------------------------------------------------- /testData/module/exportAssignment/exportImportedClass.d.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/testData/module/exportAssignment/exportImportedClass.d.kt -------------------------------------------------------------------------------- /testData/module/exportAssignment/exportImportedClass.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/testData/module/exportAssignment/exportImportedClass.d.ts -------------------------------------------------------------------------------- /testData/module/exportAssignment/exportImportedFunction.d.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/testData/module/exportAssignment/exportImportedFunction.d.kt -------------------------------------------------------------------------------- /testData/module/exportAssignment/exportImportedFunction.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/testData/module/exportAssignment/exportImportedFunction.d.ts -------------------------------------------------------------------------------- /testData/module/exportAssignment/exportImportedNamespace.d.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/testData/module/exportAssignment/exportImportedNamespace.d.kt -------------------------------------------------------------------------------- /testData/module/exportAssignment/exportImportedNamespace.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/testData/module/exportAssignment/exportImportedNamespace.d.ts -------------------------------------------------------------------------------- /testData/module/exportAssignment/exportModuleDeclaredAfter.d.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/testData/module/exportAssignment/exportModuleDeclaredAfter.d.kt -------------------------------------------------------------------------------- /testData/module/exportAssignment/exportModuleDeclaredAfter.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/testData/module/exportAssignment/exportModuleDeclaredAfter.d.ts -------------------------------------------------------------------------------- /testData/module/exportAssignment/exportModuleDeclaredBefore.d.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/testData/module/exportAssignment/exportModuleDeclaredBefore.d.kt -------------------------------------------------------------------------------- /testData/module/exportAssignment/exportModuleDeclaredBefore.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/testData/module/exportAssignment/exportModuleDeclaredBefore.d.ts -------------------------------------------------------------------------------- /testData/module/exportAssignment/exportModuleWhichNameStartsWithUndescrs.d.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/testData/module/exportAssignment/exportModuleWhichNameStartsWithUndescrs.d.kt -------------------------------------------------------------------------------- /testData/module/exportAssignment/exportModuleWhichNameStartsWithUndescrs.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/testData/module/exportAssignment/exportModuleWhichNameStartsWithUndescrs.d.ts -------------------------------------------------------------------------------- /testData/module/exportAssignment/nestedNamespace.d.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/testData/module/exportAssignment/nestedNamespace.d.kt -------------------------------------------------------------------------------- /testData/module/exportAssignment/nestedNamespace.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/testData/module/exportAssignment/nestedNamespace.d.ts -------------------------------------------------------------------------------- /testData/module/exportAssignment/nestedNamespaceOutsideModule.d.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/testData/module/exportAssignment/nestedNamespaceOutsideModule.d.kt -------------------------------------------------------------------------------- /testData/module/exportAssignment/nestedNamespaceOutsideModule.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/testData/module/exportAssignment/nestedNamespaceOutsideModule.d.ts -------------------------------------------------------------------------------- /testData/module/exportAssignment/refToOuterVarAfterModule.d.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/testData/module/exportAssignment/refToOuterVarAfterModule.d.kt -------------------------------------------------------------------------------- /testData/module/exportAssignment/refToOuterVarAfterModule.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/testData/module/exportAssignment/refToOuterVarAfterModule.d.ts -------------------------------------------------------------------------------- /testData/module/exportAssignment/refToOuterVarBeforeModule.d.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/testData/module/exportAssignment/refToOuterVarBeforeModule.d.kt -------------------------------------------------------------------------------- /testData/module/exportAssignment/refToOuterVarBeforeModule.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/testData/module/exportAssignment/refToOuterVarBeforeModule.d.ts -------------------------------------------------------------------------------- /testData/module/exportAssignment/withInterface.d.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/testData/module/exportAssignment/withInterface.d.kt -------------------------------------------------------------------------------- /testData/module/exportAssignment/withInterface.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/testData/module/exportAssignment/withInterface.d.ts -------------------------------------------------------------------------------- /testData/module/nestedModules.d.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/testData/module/nestedModules.d.kt -------------------------------------------------------------------------------- /testData/module/nestedModules.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/testData/module/nestedModules.d.ts -------------------------------------------------------------------------------- /testData/module/nestedModulesWithSameName.d.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/testData/module/nestedModulesWithSameName.d.kt -------------------------------------------------------------------------------- /testData/module/nestedModulesWithSameName.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/testData/module/nestedModulesWithSameName.d.ts -------------------------------------------------------------------------------- /testData/module/referToNonIdentifierModule.d.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/testData/module/referToNonIdentifierModule.d.kt -------------------------------------------------------------------------------- /testData/module/referToNonIdentifierModule.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/testData/module/referToNonIdentifierModule.d.ts -------------------------------------------------------------------------------- /testData/module/withDotInName/simple.d.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/testData/module/withDotInName/simple.d.kt -------------------------------------------------------------------------------- /testData/module/withDotInName/simple.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/testData/module/withDotInName/simple.d.ts -------------------------------------------------------------------------------- /testData/module/withDotInName/withMerging.d.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/testData/module/withDotInName/withMerging.d.kt -------------------------------------------------------------------------------- /testData/module/withDotInName/withMerging.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/testData/module/withDotInName/withMerging.d.ts -------------------------------------------------------------------------------- /testData/module/withMembers.d.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/testData/module/withMembers.d.kt -------------------------------------------------------------------------------- /testData/module/withMembers.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/testData/module/withMembers.d.ts -------------------------------------------------------------------------------- /testData/module/withNonExportDeclarations.d.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/testData/module/withNonExportDeclarations.d.kt -------------------------------------------------------------------------------- /testData/module/withNonExportDeclarations.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/testData/module/withNonExportDeclarations.d.ts -------------------------------------------------------------------------------- /testData/module/withNonIdentifierSymbols.d.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/testData/module/withNonIdentifierSymbols.d.kt -------------------------------------------------------------------------------- /testData/module/withNonIdentifierSymbols.d.ts: -------------------------------------------------------------------------------- 1 | declare module "foo-bar" { 2 | export function baz(); 3 | } -------------------------------------------------------------------------------- /testData/module/withSlashInName.d.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/testData/module/withSlashInName.d.kt -------------------------------------------------------------------------------- /testData/module/withSlashInName.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/testData/module/withSlashInName.d.ts -------------------------------------------------------------------------------- /testData/module/withoutDeclare.d.kt: -------------------------------------------------------------------------------- 1 | // NO DECLARATIONS -------------------------------------------------------------------------------- /testData/module/withoutDeclare.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/testData/module/withoutDeclare.d.ts -------------------------------------------------------------------------------- /testData/names/ObjectBindingPattern.d.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/testData/names/ObjectBindingPattern.d.kt -------------------------------------------------------------------------------- /testData/names/ObjectBindingPattern.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/testData/names/ObjectBindingPattern.d.ts -------------------------------------------------------------------------------- /testData/new/inTypeLiteral.d.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/testData/new/inTypeLiteral.d.kt -------------------------------------------------------------------------------- /testData/new/inTypeLiteral.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/testData/new/inTypeLiteral.d.ts -------------------------------------------------------------------------------- /testData/new/simple.d.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/testData/new/simple.d.kt -------------------------------------------------------------------------------- /testData/new/simple.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/testData/new/simple.d.ts -------------------------------------------------------------------------------- /testData/objectType/asTypeAlias.d.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/testData/objectType/asTypeAlias.d.kt -------------------------------------------------------------------------------- /testData/objectType/asTypeAlias.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/testData/objectType/asTypeAlias.d.ts -------------------------------------------------------------------------------- /testData/objectType/asTypeAliasInNamespaces.d.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/testData/objectType/asTypeAliasInNamespaces.d.kt -------------------------------------------------------------------------------- /testData/objectType/asTypeAliasInNamespaces.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/testData/objectType/asTypeAliasInNamespaces.d.ts -------------------------------------------------------------------------------- /testData/objectType/constructorParameter.d.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/testData/objectType/constructorParameter.d.kt -------------------------------------------------------------------------------- /testData/objectType/constructorParameter.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/testData/objectType/constructorParameter.d.ts -------------------------------------------------------------------------------- /testData/objectType/emptyObjectTypeAsAny.d.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/testData/objectType/emptyObjectTypeAsAny.d.kt -------------------------------------------------------------------------------- /testData/objectType/emptyObjectTypeAsAny.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/testData/objectType/emptyObjectTypeAsAny.d.ts -------------------------------------------------------------------------------- /testData/objectType/function.d.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/testData/objectType/function.d.kt -------------------------------------------------------------------------------- /testData/objectType/function.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/testData/objectType/function.d.ts -------------------------------------------------------------------------------- /testData/objectType/functionIntersectionParameter.d.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/testData/objectType/functionIntersectionParameter.d.kt -------------------------------------------------------------------------------- /testData/objectType/functionIntersectionParameter.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/testData/objectType/functionIntersectionParameter.d.ts -------------------------------------------------------------------------------- /testData/objectType/functionTypedIntersectionParameter.d.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/testData/objectType/functionTypedIntersectionParameter.d.kt -------------------------------------------------------------------------------- /testData/objectType/functionTypedIntersectionParameter.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/testData/objectType/functionTypedIntersectionParameter.d.ts -------------------------------------------------------------------------------- /testData/objectType/genericViaTypeAlias.d.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/testData/objectType/genericViaTypeAlias.d.kt -------------------------------------------------------------------------------- /testData/objectType/genericViaTypeAlias.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/testData/objectType/genericViaTypeAlias.d.ts -------------------------------------------------------------------------------- /testData/objectType/generics.d.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/testData/objectType/generics.d.kt -------------------------------------------------------------------------------- /testData/objectType/generics.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/testData/objectType/generics.d.ts -------------------------------------------------------------------------------- /testData/objectType/inClassMembers.d.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/testData/objectType/inClassMembers.d.kt -------------------------------------------------------------------------------- /testData/objectType/inClassMembers.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/testData/objectType/inClassMembers.d.ts -------------------------------------------------------------------------------- /testData/objectType/inInterface.d.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/testData/objectType/inInterface.d.kt -------------------------------------------------------------------------------- /testData/objectType/inInterface.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/testData/objectType/inInterface.d.ts -------------------------------------------------------------------------------- /testData/objectType/inModuleMembers.d.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/testData/objectType/inModuleMembers.d.kt -------------------------------------------------------------------------------- /testData/objectType/inModuleMembers.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/testData/objectType/inModuleMembers.d.ts -------------------------------------------------------------------------------- /testData/objectType/shareTempTypesBetweenModules.d.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/testData/objectType/shareTempTypesBetweenModules.d.kt -------------------------------------------------------------------------------- /testData/objectType/shareTempTypesBetweenModules.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/testData/objectType/shareTempTypesBetweenModules.d.ts -------------------------------------------------------------------------------- /testData/objectType/useExportedType.d.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/testData/objectType/useExportedType.d.kt -------------------------------------------------------------------------------- /testData/objectType/useExportedType.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/testData/objectType/useExportedType.d.ts -------------------------------------------------------------------------------- /testData/objectType/useJsonWhenPossible.d.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/testData/objectType/useJsonWhenPossible.d.kt -------------------------------------------------------------------------------- /testData/objectType/useJsonWhenPossible.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/testData/objectType/useJsonWhenPossible.d.ts -------------------------------------------------------------------------------- /testData/objectType/useOneTraitForSameObjectTypes.d.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/testData/objectType/useOneTraitForSameObjectTypes.d.kt -------------------------------------------------------------------------------- /testData/objectType/useOneTraitForSameObjectTypes.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/testData/objectType/useOneTraitForSameObjectTypes.d.ts -------------------------------------------------------------------------------- /testData/objectType/var.d.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/testData/objectType/var.d.kt -------------------------------------------------------------------------------- /testData/objectType/var.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/testData/objectType/var.d.ts -------------------------------------------------------------------------------- /testData/thisType/inClass.d.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/testData/thisType/inClass.d.kt -------------------------------------------------------------------------------- /testData/thisType/inClass.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/testData/thisType/inClass.d.ts -------------------------------------------------------------------------------- /testData/thisType/inInterface.d.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/testData/thisType/inInterface.d.kt -------------------------------------------------------------------------------- /testData/thisType/inInterface.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/testData/thisType/inInterface.d.ts -------------------------------------------------------------------------------- /testData/thisType/inObjectType.d.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/testData/thisType/inObjectType.d.kt -------------------------------------------------------------------------------- /testData/thisType/inObjectType.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/testData/thisType/inObjectType.d.ts -------------------------------------------------------------------------------- /testData/thisType/withGenericParameters.d.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/testData/thisType/withGenericParameters.d.kt -------------------------------------------------------------------------------- /testData/thisType/withGenericParameters.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/testData/thisType/withGenericParameters.d.ts -------------------------------------------------------------------------------- /testData/topLevelMembers/functions/functions.d.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/testData/topLevelMembers/functions/functions.d.kt -------------------------------------------------------------------------------- /testData/topLevelMembers/functions/functions.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/testData/topLevelMembers/functions/functions.d.ts -------------------------------------------------------------------------------- /testData/topLevelMembers/functions/functionsWithDefaultArguments.d.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/testData/topLevelMembers/functions/functionsWithDefaultArguments.d.kt -------------------------------------------------------------------------------- /testData/topLevelMembers/functions/functionsWithDefaultArguments.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/testData/topLevelMembers/functions/functionsWithDefaultArguments.d.ts -------------------------------------------------------------------------------- /testData/topLevelMembers/functions/functionsWithOptionalFunctionType.d.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/testData/topLevelMembers/functions/functionsWithOptionalFunctionType.d.kt -------------------------------------------------------------------------------- /testData/topLevelMembers/functions/functionsWithOptionalFunctionType.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/testData/topLevelMembers/functions/functionsWithOptionalFunctionType.d.ts -------------------------------------------------------------------------------- /testData/topLevelMembers/functions/functionsWithOptionalParameter.d.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/testData/topLevelMembers/functions/functionsWithOptionalParameter.d.kt -------------------------------------------------------------------------------- /testData/topLevelMembers/functions/functionsWithOptionalParameter.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/testData/topLevelMembers/functions/functionsWithOptionalParameter.d.ts -------------------------------------------------------------------------------- /testData/topLevelMembers/functions/functionsWithVararg.d.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/testData/topLevelMembers/functions/functionsWithVararg.d.kt -------------------------------------------------------------------------------- /testData/topLevelMembers/functions/functionsWithVararg.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/testData/topLevelMembers/functions/functionsWithVararg.d.ts -------------------------------------------------------------------------------- /testData/topLevelMembers/functions/functionsWithoutDeclare.d.kt: -------------------------------------------------------------------------------- 1 | // NO DECLARATIONS -------------------------------------------------------------------------------- /testData/topLevelMembers/functions/functionsWithoutDeclare.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/testData/topLevelMembers/functions/functionsWithoutDeclare.d.ts -------------------------------------------------------------------------------- /testData/topLevelMembers/generics/generics.d.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/testData/topLevelMembers/generics/generics.d.kt -------------------------------------------------------------------------------- /testData/topLevelMembers/generics/generics.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/testData/topLevelMembers/generics/generics.d.ts -------------------------------------------------------------------------------- /testData/topLevelMembers/generics/genericsWithConstraint.d.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/testData/topLevelMembers/generics/genericsWithConstraint.d.kt -------------------------------------------------------------------------------- /testData/topLevelMembers/generics/genericsWithConstraint.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/testData/topLevelMembers/generics/genericsWithConstraint.d.ts -------------------------------------------------------------------------------- /testData/topLevelMembers/variables/variableAsFunctionType.d.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/testData/topLevelMembers/variables/variableAsFunctionType.d.kt -------------------------------------------------------------------------------- /testData/topLevelMembers/variables/variableAsFunctionType.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/testData/topLevelMembers/variables/variableAsFunctionType.d.ts -------------------------------------------------------------------------------- /testData/topLevelMembers/variables/variables.d.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/testData/topLevelMembers/variables/variables.d.kt -------------------------------------------------------------------------------- /testData/topLevelMembers/variables/variables.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/testData/topLevelMembers/variables/variables.d.ts -------------------------------------------------------------------------------- /testData/topLevelMembers/variables/variablesAsArray.d.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/testData/topLevelMembers/variables/variablesAsArray.d.kt -------------------------------------------------------------------------------- /testData/topLevelMembers/variables/variablesAsArray.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/testData/topLevelMembers/variables/variablesAsArray.d.ts -------------------------------------------------------------------------------- /testData/topLevelMembers/variables/variablesWithoutDeclare.d.kt: -------------------------------------------------------------------------------- 1 | // NO DECLARATIONS -------------------------------------------------------------------------------- /testData/topLevelMembers/variables/variablesWithoutDeclare.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/testData/topLevelMembers/variables/variablesWithoutDeclare.d.ts -------------------------------------------------------------------------------- /testData/tscEscaping.d.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/testData/tscEscaping.d.kt -------------------------------------------------------------------------------- /testData/tscEscaping.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/testData/tscEscaping.d.ts -------------------------------------------------------------------------------- /testData/tuple/tuple.d.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/testData/tuple/tuple.d.kt -------------------------------------------------------------------------------- /testData/tuple/tuple.d.ts: -------------------------------------------------------------------------------- 1 | declare var foo: [string, any]; -------------------------------------------------------------------------------- /testData/typeAlias/inMergedNamespaces.d.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/testData/typeAlias/inMergedNamespaces.d.kt -------------------------------------------------------------------------------- /testData/typeAlias/inMergedNamespaces.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/testData/typeAlias/inMergedNamespaces.d.ts -------------------------------------------------------------------------------- /testData/typeAlias/recursiveType.d.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/testData/typeAlias/recursiveType.d.kt -------------------------------------------------------------------------------- /testData/typeAlias/recursiveType.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/testData/typeAlias/recursiveType.d.ts -------------------------------------------------------------------------------- /testData/typeAlias/resolvedToIntersection.d.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/testData/typeAlias/resolvedToIntersection.d.kt -------------------------------------------------------------------------------- /testData/typeAlias/resolvedToIntersection.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/testData/typeAlias/resolvedToIntersection.d.ts -------------------------------------------------------------------------------- /testData/typeAlias/supertype.d.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/testData/typeAlias/supertype.d.kt -------------------------------------------------------------------------------- /testData/typeAlias/supertype.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/testData/typeAlias/supertype.d.ts -------------------------------------------------------------------------------- /testData/typeAlias/typeParams.d.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/testData/typeAlias/typeParams.d.kt -------------------------------------------------------------------------------- /testData/typeAlias/typeParams.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/testData/typeAlias/typeParams.d.ts -------------------------------------------------------------------------------- /testData/typeAlias/unionTypeParams.d.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/testData/typeAlias/unionTypeParams.d.kt -------------------------------------------------------------------------------- /testData/typeAlias/unionTypeParams.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/testData/typeAlias/unionTypeParams.d.ts -------------------------------------------------------------------------------- /testData/typeAlias/useBeforeDeclaration.d.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/testData/typeAlias/useBeforeDeclaration.d.kt -------------------------------------------------------------------------------- /testData/typeAlias/useBeforeDeclaration.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/testData/typeAlias/useBeforeDeclaration.d.ts -------------------------------------------------------------------------------- /testData/typePredicate/simple.d.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/testData/typePredicate/simple.d.kt -------------------------------------------------------------------------------- /testData/typePredicate/simple.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/testData/typePredicate/simple.d.ts -------------------------------------------------------------------------------- /testData/unionType/aliases.d.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/testData/unionType/aliases.d.kt -------------------------------------------------------------------------------- /testData/unionType/aliases.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/testData/unionType/aliases.d.ts -------------------------------------------------------------------------------- /testData/unionType/boom.d.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/testData/unionType/boom.d.kt -------------------------------------------------------------------------------- /testData/unionType/boom.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/testData/unionType/boom.d.ts -------------------------------------------------------------------------------- /testData/unionType/simple.d.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/testData/unionType/simple.d.kt -------------------------------------------------------------------------------- /testData/unionType/simple.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/testData/unionType/simple.d.ts -------------------------------------------------------------------------------- /testData/unionType/withNullOrUndefined.d.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/testData/unionType/withNullOrUndefined.d.kt -------------------------------------------------------------------------------- /testData/unionType/withNullOrUndefined.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/testData/unionType/withNullOrUndefined.d.ts -------------------------------------------------------------------------------- /testDefinitelyTyped/expected/accounting/accounting.d.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/testDefinitelyTyped/expected/accounting/accounting.d.kt -------------------------------------------------------------------------------- /testDefinitelyTyped/expected/ace/ace.d.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/testDefinitelyTyped/expected/ace/ace.d.kt -------------------------------------------------------------------------------- /testDefinitelyTyped/expected/add2home/add2home.d.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/testDefinitelyTyped/expected/add2home/add2home.d.kt -------------------------------------------------------------------------------- /testDefinitelyTyped/expected/alertify/alertify.d.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/testDefinitelyTyped/expected/alertify/alertify.d.kt -------------------------------------------------------------------------------- /testDefinitelyTyped/expected/amcharts/AmCharts.d.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/testDefinitelyTyped/expected/amcharts/AmCharts.d.kt -------------------------------------------------------------------------------- /testDefinitelyTyped/expected/amplifyjs/amplifyjs.d.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/testDefinitelyTyped/expected/amplifyjs/amplifyjs.d.kt -------------------------------------------------------------------------------- /testDefinitelyTyped/expected/angular-agility/angular-agility.d.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/testDefinitelyTyped/expected/angular-agility/angular-agility.d.kt -------------------------------------------------------------------------------- /testDefinitelyTyped/expected/angular-translate/angular-translate.d.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/testDefinitelyTyped/expected/angular-translate/angular-translate.d.kt -------------------------------------------------------------------------------- /testDefinitelyTyped/expected/angular-ui-bootstrap/angular-ui-bootstrap.d.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/testDefinitelyTyped/expected/angular-ui-bootstrap/angular-ui-bootstrap.d.kt -------------------------------------------------------------------------------- /testDefinitelyTyped/expected/angular-ui/angular-ui-router.d.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/testDefinitelyTyped/expected/angular-ui/angular-ui-router.d.kt -------------------------------------------------------------------------------- /testDefinitelyTyped/expected/angularLocalStorage/angularLocalStorage.d.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/testDefinitelyTyped/expected/angularLocalStorage/angularLocalStorage.d.kt -------------------------------------------------------------------------------- /testDefinitelyTyped/expected/angularfire/angularfire.d.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/testDefinitelyTyped/expected/angularfire/angularfire.d.kt -------------------------------------------------------------------------------- /testDefinitelyTyped/expected/ansicolors/ansicolors.d.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/testDefinitelyTyped/expected/ansicolors/ansicolors.d.kt -------------------------------------------------------------------------------- /testDefinitelyTyped/expected/appframework/appframework.d.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/testDefinitelyTyped/expected/appframework/appframework.d.kt -------------------------------------------------------------------------------- /testDefinitelyTyped/expected/arbiter/Arbiter.d.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/testDefinitelyTyped/expected/arbiter/Arbiter.d.kt -------------------------------------------------------------------------------- /testDefinitelyTyped/expected/asciify/asciify.d.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/testDefinitelyTyped/expected/asciify/asciify.d.kt -------------------------------------------------------------------------------- /testDefinitelyTyped/expected/assert/assert.d.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/testDefinitelyTyped/expected/assert/assert.d.kt -------------------------------------------------------------------------------- /testDefinitelyTyped/expected/assertion-error/assertion-error.d.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/testDefinitelyTyped/expected/assertion-error/assertion-error.d.kt -------------------------------------------------------------------------------- /testDefinitelyTyped/expected/async/async.d.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/testDefinitelyTyped/expected/async/async.d.kt -------------------------------------------------------------------------------- /testDefinitelyTyped/expected/atmosphere/atmosphere.d.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/testDefinitelyTyped/expected/atmosphere/atmosphere.d.kt -------------------------------------------------------------------------------- /testDefinitelyTyped/expected/atom/atom.d.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/testDefinitelyTyped/expected/atom/atom.d.kt -------------------------------------------------------------------------------- /testDefinitelyTyped/expected/atpl/atpl.d.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/testDefinitelyTyped/expected/atpl/atpl.d.kt -------------------------------------------------------------------------------- /testDefinitelyTyped/expected/auth0.widget/auth0.widget.d.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/testDefinitelyTyped/expected/auth0.widget/auth0.widget.d.kt -------------------------------------------------------------------------------- /testDefinitelyTyped/expected/auth0/auth0.d.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/testDefinitelyTyped/expected/auth0/auth0.d.kt -------------------------------------------------------------------------------- /testDefinitelyTyped/expected/aws-sdk/aws-sdk.d.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/testDefinitelyTyped/expected/aws-sdk/aws-sdk.d.kt -------------------------------------------------------------------------------- /testDefinitelyTyped/expected/azure-mobile-services-client/AzureMobileServicesClient.d.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/testDefinitelyTyped/expected/azure-mobile-services-client/AzureMobileServicesClient.d.kt -------------------------------------------------------------------------------- /testDefinitelyTyped/expected/backbone-relational/backbone-relational.d.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/testDefinitelyTyped/expected/backbone-relational/backbone-relational.d.kt -------------------------------------------------------------------------------- /testDefinitelyTyped/expected/backbone/backbone.d.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/testDefinitelyTyped/expected/backbone/backbone.d.kt -------------------------------------------------------------------------------- /testDefinitelyTyped/expected/backgrid/backgrid.d.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/testDefinitelyTyped/expected/backgrid/backgrid.d.kt -------------------------------------------------------------------------------- /testDefinitelyTyped/expected/bgiframe/typescript.bgiframe.d.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/testDefinitelyTyped/expected/bgiframe/typescript.bgiframe.d.kt -------------------------------------------------------------------------------- /testDefinitelyTyped/expected/big-integer/big-integer.d.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/testDefinitelyTyped/expected/big-integer/big-integer.d.kt -------------------------------------------------------------------------------- /testDefinitelyTyped/expected/bigscreen/bigscreen.d.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/testDefinitelyTyped/expected/bigscreen/bigscreen.d.kt -------------------------------------------------------------------------------- /testDefinitelyTyped/expected/bl/bl.d.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/testDefinitelyTyped/expected/bl/bl.d.kt -------------------------------------------------------------------------------- /testDefinitelyTyped/expected/bluebird/bluebird.d.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/testDefinitelyTyped/expected/bluebird/bluebird.d.kt -------------------------------------------------------------------------------- /testDefinitelyTyped/expected/bootbox/bootbox.d.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/testDefinitelyTyped/expected/bootbox/bootbox.d.kt -------------------------------------------------------------------------------- /testDefinitelyTyped/expected/bootstrap-notify/bootstrap-notify.d.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/testDefinitelyTyped/expected/bootstrap-notify/bootstrap-notify.d.kt -------------------------------------------------------------------------------- /testDefinitelyTyped/expected/bootstrap.datepicker/bootstrap.datepicker.d.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/testDefinitelyTyped/expected/bootstrap.datepicker/bootstrap.datepicker.d.kt -------------------------------------------------------------------------------- /testDefinitelyTyped/expected/bootstrap.paginator/bootstrap.paginator.d.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/testDefinitelyTyped/expected/bootstrap.paginator/bootstrap.paginator.d.kt -------------------------------------------------------------------------------- /testDefinitelyTyped/expected/bootstrap.timepicker/bootstrap.timepicker.d.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/testDefinitelyTyped/expected/bootstrap.timepicker/bootstrap.timepicker.d.kt -------------------------------------------------------------------------------- /testDefinitelyTyped/expected/bootstrap.v3.datetimepicker/bootstrap.v3.datetimepicker.d.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/testDefinitelyTyped/expected/bootstrap.v3.datetimepicker/bootstrap.v3.datetimepicker.d.kt -------------------------------------------------------------------------------- /testDefinitelyTyped/expected/bootstrap/bootstrap.d.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/testDefinitelyTyped/expected/bootstrap/bootstrap.d.kt -------------------------------------------------------------------------------- /testDefinitelyTyped/expected/box2d/box2dweb.d.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/testDefinitelyTyped/expected/box2d/box2dweb.d.kt -------------------------------------------------------------------------------- /testDefinitelyTyped/expected/breeze/breeze.d.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/testDefinitelyTyped/expected/breeze/breeze.d.kt -------------------------------------------------------------------------------- /testDefinitelyTyped/expected/browser-harness/browser-harness.d.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/testDefinitelyTyped/expected/browser-harness/browser-harness.d.kt -------------------------------------------------------------------------------- /testDefinitelyTyped/expected/browserify/browserify.d.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/testDefinitelyTyped/expected/browserify/browserify.d.kt -------------------------------------------------------------------------------- /testDefinitelyTyped/expected/buffer-equal/buffer-equal.d.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/testDefinitelyTyped/expected/buffer-equal/buffer-equal.d.kt -------------------------------------------------------------------------------- /testDefinitelyTyped/expected/bufferstream/bufferstream.d.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/testDefinitelyTyped/expected/bufferstream/bufferstream.d.kt -------------------------------------------------------------------------------- /testDefinitelyTyped/expected/jquery/jquery.d.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/testDefinitelyTyped/expected/jquery/jquery.d.kt -------------------------------------------------------------------------------- /testDefinitelyTyped/expected/jquery/useJQ.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/testDefinitelyTyped/expected/jquery/useJQ.kt -------------------------------------------------------------------------------- /testDefinitelyTyped/expected/typescript-services/typescriptServices.d.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/testDefinitelyTyped/expected/typescript-services/typescriptServices.d.kt -------------------------------------------------------------------------------- /ts2kt.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kotlin/ts2kt/HEAD/ts2kt.iml --------------------------------------------------------------------------------