├── .gitattributes ├── .github └── workflows │ ├── ci-build.yml │ └── release-snapshot.yml ├── .gitignore ├── .mergify.yml ├── .run ├── BintrayCleanup.run.xml ├── CI All sequential Japgolly.run.xml ├── CI All sequential Slinky.run.xml ├── CI Demoset Japgolly.run.xml ├── CI Demoset Slinky.run.xml ├── CI Demoset.run.xml ├── ImporterTest.run.xml └── Main All.run.xml ├── .sbtopts ├── .scala-steward.conf ├── .scalafmt.conf ├── CLAUDE.md ├── LICENSE ├── README.md ├── cli └── src │ └── main │ └── scala │ └── org │ └── scalablytyped │ └── converter │ └── cli │ └── Main.scala ├── core └── src │ └── main │ ├── scala-2 │ └── org │ │ └── scalablytyped │ │ └── converter │ │ └── internal │ │ └── BuilderCompat.scala │ ├── scala-3 │ └── org │ │ └── scalablytyped │ │ └── converter │ │ └── internal │ │ └── BuilderCompat.scala │ └── scala │ └── org │ └── scalablytyped │ └── converter │ ├── Selection.scala │ └── internal │ ├── Comment.scala │ ├── Comments.scala │ ├── Digest.scala │ ├── EscapeStrings.scala │ ├── IArray.scala │ ├── Json.scala │ ├── LibraryVersion.scala │ ├── StableHash.scala │ ├── Suffix.scala │ ├── constants.scala │ ├── environment.scala │ ├── files.scala │ ├── maps.scala │ ├── nameVariants.scala │ ├── orphanCodecs.scala │ ├── package.scala │ ├── scalajs │ ├── Annotation.scala │ ├── ClassType.scala │ ├── Name.scala │ ├── ProtectionLevel.scala │ ├── QualifiedName.scala │ ├── ScalaNameEscape.scala │ └── tree.scala │ ├── seqs.scala │ ├── sets.scala │ ├── stringUtils.scala │ └── ts │ ├── CodePath.scala │ ├── Directive.scala │ ├── ExportType.scala │ ├── JsLocation.scala │ ├── MemberCache.scala │ ├── MethodType.scala │ ├── ModuleSpec.scala │ ├── OptionalModifier.scala │ ├── OptionalType.scala │ ├── ProtectionLevel.scala │ ├── ReadonlyModifier.scala │ ├── TsExpr.scala │ ├── TsTypeFormatter.scala │ └── trees.scala ├── docs ├── cli.md ├── conversion-options.md ├── devel │ ├── about.md │ └── running.md ├── encoding.md ├── flavour.md ├── import-problems.md ├── library-developer.md ├── objects.md ├── plugin-no-bundler.md ├── plugin.md ├── readme.md ├── release-announcement.md ├── remotecache.md └── usage.md ├── import-scalajs-definitions └── src │ ├── main │ └── scala │ │ └── org │ │ └── scalablytyped │ │ └── converter │ │ └── internal │ │ └── scalajs │ │ └── ImportScalaDefinitions.scala │ └── test │ └── resources │ └── imported │ ├── japgolly.scala │ ├── org.scala │ ├── scala.scala │ └── slinky.scala ├── importer-portable └── src │ └── main │ └── scala │ └── org │ └── scalablytyped │ └── converter │ └── internal │ └── importer │ ├── AdaptiveNamingImport.scala │ ├── Bootstrap.scala │ ├── Cmd.scala │ ├── ConversionOptions.scala │ ├── EnabledTypeMappingExpansion.scala │ ├── FileLocking.scala │ ├── ImportEnum.scala │ ├── ImportExpr.scala │ ├── ImportJsLocation.scala │ ├── ImportName.scala │ ├── ImportTree.scala │ ├── ImportType.scala │ ├── IsUserImplementable.scala │ ├── Lazy.scala │ ├── LibScalaJs.scala │ ├── LibTs.scala │ ├── LibTsSource.scala │ ├── LibraryResolver.scala │ ├── LogPatternLibrary.scala │ ├── PathsFromTsLibSource.scala │ ├── PersistingParser.scala │ ├── Phase1ReadTypescript.scala │ ├── Phase2ToScalaJs.scala │ ├── Phase3Compile.scala │ ├── PhaseFlavour.scala │ ├── ProxyModule.scala │ ├── ResolveExternalReferences.scala │ ├── ResolvedModule.scala │ ├── RewriteNamespaceMembers.scala │ ├── ScalaJsBundlerDepFile.scala │ ├── build │ ├── Compiler.scala │ ├── CompilerPaths.scala │ ├── ContentForPublish.scala │ ├── ContentSbtProject.scala │ ├── SbtProject.scala │ ├── VersionHack.scala │ ├── layouts.scala │ └── package.scala │ └── documentation │ ├── Npmjs.scala │ └── ProjectReadme.scala ├── importer └── src │ ├── main │ └── scala │ │ └── org │ │ └── scalablytyped │ │ └── converter │ │ ├── Main.scala │ │ └── internal │ │ └── importer │ │ ├── Ci.scala │ │ ├── CommitChanges.scala │ │ ├── DTLastChangedIndex.scala │ │ ├── DTUpToDate.scala │ │ ├── DTVersions.scala │ │ ├── Interface.scala │ │ ├── Libraries.scala │ │ ├── LocalCleanup.scala │ │ ├── ProjectName.scala │ │ ├── Summary.scala │ │ ├── UpToDateExternals.scala │ │ ├── build │ │ ├── GenerateSbtPlugin.scala │ │ └── ScalaCliCompiler.scala │ │ ├── documentation │ │ ├── NpmjsFetcher.scala │ │ ├── Readme.scala │ │ └── TopLists.scala │ │ └── withZipFs.scala │ └── test │ ├── resources │ └── parsertests │ │ ├── ArrayBuffer.d.ts │ │ ├── adal.d.ts │ │ ├── adm-zip.d.ts │ │ ├── egg.d.ts │ │ ├── emissary.d.ts │ │ ├── graphql.d.ts │ │ ├── history.d.ts │ │ ├── knockout.d.ts │ │ ├── mathfield.d.ts │ │ ├── path-case.d.ts │ │ └── trailing-commas.d.ts │ ├── scala-2.12 │ └── org │ │ └── scalablytyped │ │ └── converter │ │ └── internal │ │ └── ParallelCompat.scala │ ├── scala-3 │ └── org │ │ └── scalablytyped │ │ └── converter │ │ └── internal │ │ └── ParallelCompat.scala │ └── scala │ └── org │ └── scalablytyped │ └── converter │ └── internal │ ├── StableHashTest.scala │ ├── importer │ ├── ExportsJsonTest.scala │ ├── ImporterHarness.scala │ ├── ImporterTest.scala │ ├── JsonTests.scala │ ├── NpmJsTest.scala │ ├── ScalaJsBundlerDepTest.scala │ └── build │ │ ├── ContentForPublishTest.scala │ │ └── ScalaCliCompilerTest.scala │ ├── scalajs │ └── flavours │ │ ├── ReportMissingScalaJsDomTranslations.scala │ │ └── ScalaJsDomNamesTest.scala │ └── ts │ ├── TypeExpansionHarness.scala │ ├── TypeExpansionTest.scala │ └── parser │ ├── CommentTests.scala │ ├── ImportExportParseTests.scala │ ├── LexerTests.scala │ ├── ParserHarness.scala │ ├── ParserTests.scala │ └── SuchTestMuchFail.scala ├── logging └── src │ └── main │ └── scala │ └── com │ └── olvind │ └── logging │ ├── Formatter.scala │ ├── LogLevel.scala │ ├── LogRegistry.scala │ ├── Logger.scala │ ├── Metadata.scala │ ├── Pattern.scala │ └── package.scala ├── phases └── src │ └── main │ └── scala │ └── org │ └── scalablytyped │ └── converter │ └── internal │ └── phases │ ├── PhaseCache.scala │ ├── PhaseListener.scala │ ├── PhaseRes.scala │ ├── PhaseRunner.scala │ ├── RecPhase.scala │ └── package.scala ├── project ├── Deps.scala ├── build.properties └── plugins.sbt ├── release.sc ├── sbt-converter └── src │ ├── main │ └── scala │ │ └── org │ │ └── scalablytyped │ │ └── converter │ │ ├── internal │ │ ├── ImportTypings.scala │ │ ├── ImportTypingsGenSources.scala │ │ ├── RunCache.scala │ │ ├── ScalaJsBundlerHack.scala │ │ ├── Utils.scala │ │ ├── WantedLibs.scala │ │ ├── WrapSbtLogger.scala │ │ ├── ZincCompiler.scala │ │ └── compat.scala │ │ └── plugin │ │ ├── ConverterKeys.scala │ │ ├── ExternalNpmKeys.scala │ │ ├── GenSourceKeys.scala │ │ ├── RemoteCache.scala │ │ ├── STKeys.scala │ │ ├── ScalablyTypedConverterExternalNpmPlugin.scala │ │ ├── ScalablyTypedConverterGenSourcePlugin.scala │ │ ├── ScalablyTypedConverterPlugin.scala │ │ ├── ScalablyTypedPluginBase.scala │ │ └── SourceGenMode.scala │ └── sbt-test │ └── react │ ├── external │ ├── build.sbt │ ├── package.json │ ├── project │ │ ├── build.properties │ │ └── plugins.sbt │ ├── src │ │ └── main │ │ │ └── scala │ │ │ └── Main.scala │ └── test │ ├── japgolly │ ├── build.sbt │ ├── project │ │ ├── build.properties │ │ └── plugins.sbt │ ├── src │ │ └── main │ │ │ └── scala │ │ │ └── Main.scala │ └── test │ ├── sourcegen-mixed │ ├── app │ │ └── src │ │ │ └── main │ │ │ └── scala │ │ │ └── Main.scala │ ├── build.sbt │ ├── project │ │ ├── build.properties │ │ └── plugins.sbt │ └── test │ └── sourcegen │ ├── build.sbt │ ├── project │ ├── build.properties │ └── plugins.sbt │ ├── src │ └── main │ │ └── scala │ │ └── Main.scala │ └── test ├── scalablytyped-icon.svg ├── scalajs └── src │ └── main │ ├── resources │ ├── html.json │ ├── scalajs-definitions.json │ └── svg.json │ └── scala │ └── org │ └── scalablytyped │ └── converter │ ├── Flavour.scala │ └── internal │ └── scalajs │ ├── CastConversion.scala │ ├── Dep.scala │ ├── Erasure.scala │ ├── FillInTParams.scala │ ├── FollowAliases.scala │ ├── LoopDetector.scala │ ├── Minimization.scala │ ├── Optional.scala │ ├── ParentsResolver.scala │ ├── Printer.scala │ ├── ScalaJsClasses.scala │ ├── ScalaOutput.scala │ ├── TreeScope.scala │ ├── TreeTransformation.scala │ ├── TreeTraverse.scala │ ├── TypeRewriter.scala │ ├── Versions.scala │ ├── flavours │ ├── CreatorMethod.scala │ ├── FindProps.scala │ ├── FlavourImpl.scala │ ├── GenBuilderClass.scala │ ├── GenCompanions.scala │ ├── GenPromiseOps.scala │ ├── IdentifyReactComponents.scala │ ├── JapgollyFlavour.scala │ ├── JapgollyGenComponents.scala │ ├── JapgollyGenStBuildingComponent.scala │ ├── JapgollyMemberToProp.scala │ ├── JapgollyNames.scala │ ├── JapgollyTypeConversions.scala │ ├── MemberToProp.scala │ ├── NormalFlavour.scala │ ├── Prop.scala │ ├── ReactNames.scala │ ├── ReactNamesProxy.scala │ ├── ScalaJsDomNames.scala │ ├── ScalaJsLibNames.scala │ ├── SlinkyFlavour.scala │ ├── SlinkyGenComponents.scala │ ├── SlinkyGenStBuildingComponent.scala │ ├── SlinkyNativeFlavour.scala │ ├── SlinkyTagsLoader.scala │ ├── SlinkyTypeConversions.scala │ ├── SlinkyWeb.scala │ ├── package.scala │ └── types.scala │ ├── setCodePath.scala │ └── transforms │ ├── Adapter.scala │ ├── CleanIllegalNames.scala │ ├── CleanupTrivial.scala │ ├── CombineOverloads.scala │ ├── CompleteClass.scala │ ├── Deduplicator.scala │ ├── FakeLiterals.scala │ ├── FilterMemberOverrides.scala │ ├── InferMemberOverrides.scala │ ├── LimitUnionLength.scala │ ├── Mangler.scala │ ├── ModulesCombine.scala │ ├── RemoveDuplicateInheritance.scala │ ├── RemoveMultipleInheritance.scala │ ├── SetPrivateWithin.scala │ ├── ShortenNames.scala │ ├── Sorter.scala │ └── UnionToInheritance.scala ├── tests ├── antd │ ├── check-3 │ │ ├── a │ │ │ └── antd │ │ │ │ ├── build.sbt │ │ │ │ ├── project │ │ │ │ ├── build.properties │ │ │ │ └── plugins.sbt │ │ │ │ ├── readme.md │ │ │ │ └── src │ │ │ │ └── main │ │ │ │ ├── resources │ │ │ │ └── NPM_DEPENDENCIES │ │ │ │ └── scala │ │ │ │ └── typings │ │ │ │ └── antd │ │ │ │ ├── antdRequire.scala │ │ │ │ └── libFormFormMod.scala │ │ └── r │ │ │ └── rc-field-form │ │ │ ├── build.sbt │ │ │ ├── project │ │ │ ├── build.properties │ │ │ └── plugins.sbt │ │ │ ├── readme.md │ │ │ └── src │ │ │ └── main │ │ │ ├── resources │ │ │ └── NPM_DEPENDENCIES │ │ │ └── scala │ │ │ └── typings │ │ │ └── rcFieldForm │ │ │ ├── esFormMod.scala │ │ │ └── rcFieldFormRequire.scala │ └── in │ │ ├── antd │ │ ├── lib │ │ │ └── form │ │ │ │ └── Form.d.ts │ │ └── package.json │ │ ├── rc-field-form │ │ ├── es │ │ │ ├── Form.d.ts │ │ │ └── index.d.ts │ │ └── package.json │ │ └── stdlib.d.ts ├── augment-module │ ├── check-3 │ │ ├── l │ │ │ ├── lodash │ │ │ │ ├── build.sbt │ │ │ │ ├── project │ │ │ │ │ ├── build.properties │ │ │ │ │ └── plugins.sbt │ │ │ │ ├── readme.md │ │ │ │ └── src │ │ │ │ │ └── main │ │ │ │ │ ├── resources │ │ │ │ │ └── NPM_DEPENDENCIES │ │ │ │ │ └── scala │ │ │ │ │ └── typings │ │ │ │ │ └── lodash │ │ │ │ │ ├── fpCurryMod.scala │ │ │ │ │ ├── fpMod.scala │ │ │ │ │ ├── global.scala │ │ │ │ │ ├── lodashRequire.scala │ │ │ │ │ ├── mod.scala │ │ │ │ │ └── package.scala │ │ │ └── lodash_dot_add │ │ │ │ ├── build.sbt │ │ │ │ ├── project │ │ │ │ ├── build.properties │ │ │ │ └── plugins.sbt │ │ │ │ ├── readme.md │ │ │ │ └── src │ │ │ │ └── main │ │ │ │ ├── resources │ │ │ │ └── NPM_DEPENDENCIES │ │ │ │ └── scala │ │ │ │ └── typings │ │ │ │ └── lodashAdd │ │ │ │ └── lodashAddRequire.scala │ │ └── s │ │ │ └── std │ │ │ ├── build.sbt │ │ │ ├── project │ │ │ ├── build.properties │ │ │ └── plugins.sbt │ │ │ ├── readme.md │ │ │ └── src │ │ │ └── main │ │ │ └── scala │ │ │ └── typings │ │ │ └── std │ │ │ ├── Array.scala │ │ │ ├── ArrayLike.scala │ │ │ ├── package.scala │ │ │ └── stdRequire.scala │ ├── check │ │ └── l │ │ │ └── lodash │ │ │ └── src │ │ │ └── main │ │ │ └── scala │ │ │ └── typings │ │ │ └── lodash │ │ │ └── global.scala │ └── in │ │ ├── lodash.add │ │ ├── index.d.ts │ │ ├── tsconfig.json │ │ └── tslint.json │ │ ├── lodash │ │ ├── add.d.ts │ │ ├── at.d.ts │ │ ├── common │ │ │ ├── common.d.ts │ │ │ ├── function.d.ts │ │ │ ├── math.d.ts │ │ │ └── object.d.ts │ │ ├── fp.d.ts │ │ ├── fp │ │ │ └── curry.d.ts │ │ ├── index.d.ts │ │ └── tsconfig.json │ │ └── stdlib.d.ts ├── aws-sdk │ ├── check-3 │ │ └── a │ │ │ └── aws-sdk │ │ │ ├── build.sbt │ │ │ ├── project │ │ │ ├── build.properties │ │ │ └── plugins.sbt │ │ │ ├── readme.md │ │ │ └── src │ │ │ └── main │ │ │ ├── resources │ │ │ └── NPM_DEPENDENCIES │ │ │ └── scala │ │ │ └── typings │ │ │ └── awsSdk │ │ │ ├── awsSdkRequire.scala │ │ │ ├── awsSdkStrings.scala │ │ │ ├── clientsAllMod.scala │ │ │ ├── clientsDynamodbMod.scala │ │ │ ├── global.scala │ │ │ ├── libConfigMod.scala │ │ │ ├── libConfigServicePlaceholdersMod.scala │ │ │ ├── libDynamodbConverterMod.scala │ │ │ ├── libDynamodbDocumentClientMod.scala │ │ │ ├── libServicesDynamodbMod.scala │ │ │ └── mod.scala │ ├── check │ │ └── a │ │ │ └── aws-sdk │ │ │ └── src │ │ │ └── main │ │ │ └── scala │ │ │ └── typings │ │ │ └── awsSdk │ │ │ └── global.scala │ └── in │ │ ├── aws-sdk │ │ ├── clients │ │ │ ├── all.d.ts │ │ │ └── dynamodb.d.ts │ │ ├── index.d.ts │ │ ├── lib │ │ │ ├── config.d.ts │ │ │ ├── config_service_placeholders.d.ts │ │ │ ├── dynamodb │ │ │ │ ├── converter.d.ts │ │ │ │ └── document_client.d.ts │ │ │ └── services │ │ │ │ └── dynamodb.d.ts │ │ └── package.json │ │ └── stdlib.d.ts ├── babylon │ ├── check-3 │ │ ├── b │ │ │ └── babylon │ │ │ │ ├── build.sbt │ │ │ │ ├── project │ │ │ │ ├── build.properties │ │ │ │ └── plugins.sbt │ │ │ │ ├── readme.md │ │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── scala │ │ │ │ └── typings │ │ │ │ └── babylon │ │ │ │ ├── babylonRequire.scala │ │ │ │ ├── babylonjsIndexMod.scala │ │ │ │ ├── babylonjsMod.scala │ │ │ │ ├── middleMod.scala │ │ │ │ └── originalMod.scala │ │ └── n │ │ │ └── node │ │ │ ├── build.sbt │ │ │ ├── project │ │ │ ├── build.properties │ │ │ └── plugins.sbt │ │ │ ├── readme.md │ │ │ └── src │ │ │ └── main │ │ │ └── scala │ │ │ └── typings │ │ │ └── node │ │ │ └── nodeRequire.scala │ └── in │ │ ├── babylon │ │ └── babylon.module.minimized.d.ts │ │ ├── node │ │ └── index.d.ts │ │ └── stdlib.d.ts ├── bigint │ ├── check-3 │ │ ├── b │ │ │ └── bigint │ │ │ │ ├── build.sbt │ │ │ │ ├── project │ │ │ │ ├── build.properties │ │ │ │ └── plugins.sbt │ │ │ │ ├── readme.md │ │ │ │ └── src │ │ │ │ └── main │ │ │ │ ├── resources │ │ │ │ └── NPM_DEPENDENCIES │ │ │ │ └── scala │ │ │ │ └── typings │ │ │ │ └── bigint │ │ │ │ ├── BigInt.scala │ │ │ │ ├── Test.scala │ │ │ │ ├── bigintRequire.scala │ │ │ │ └── global.scala │ │ └── s │ │ │ └── std │ │ │ ├── build.sbt │ │ │ ├── project │ │ │ ├── build.properties │ │ │ └── plugins.sbt │ │ │ ├── readme.md │ │ │ └── src │ │ │ └── main │ │ │ └── scala │ │ │ └── typings │ │ │ └── std │ │ │ ├── Array.scala │ │ │ ├── BigInt.scala │ │ │ └── stdRequire.scala │ └── in │ │ ├── bigint │ │ └── index.d.ts │ │ └── stdlib.d.ts ├── chart.js │ ├── check-3 │ │ ├── c │ │ │ └── chart_dot_js │ │ │ │ ├── build.sbt │ │ │ │ ├── project │ │ │ │ ├── build.properties │ │ │ │ └── plugins.sbt │ │ │ │ ├── readme.md │ │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── scala │ │ │ │ └── typings │ │ │ │ └── chartJs │ │ │ │ ├── chartJsRequire.scala │ │ │ │ └── mod.scala │ │ └── s │ │ │ └── std │ │ │ ├── build.sbt │ │ │ ├── project │ │ │ ├── build.properties │ │ │ └── plugins.sbt │ │ │ ├── readme.md │ │ │ └── src │ │ │ └── main │ │ │ └── scala │ │ │ └── typings │ │ │ └── std │ │ │ ├── CanvasRenderingContext2D.scala │ │ │ ├── HTMLCanvasElement.scala │ │ │ ├── package.scala │ │ │ └── stdRequire.scala │ └── in │ │ ├── chart.js │ │ ├── index.d.ts │ │ ├── tsconfig.json │ │ └── tslint.json │ │ └── stdlib.d.ts ├── cldrjs │ ├── check-3 │ │ ├── c │ │ │ └── cldrjs │ │ │ │ ├── build.sbt │ │ │ │ ├── project │ │ │ │ ├── build.properties │ │ │ │ └── plugins.sbt │ │ │ │ ├── readme.md │ │ │ │ └── src │ │ │ │ └── main │ │ │ │ ├── resources │ │ │ │ └── NPM_DEPENDENCIES │ │ │ │ └── scala │ │ │ │ └── typings │ │ │ │ └── cldrjs │ │ │ │ ├── cldrEventMod.scala │ │ │ │ ├── cldrSupplementalMod.scala │ │ │ │ ├── cldrjsRequire.scala │ │ │ │ ├── global.scala │ │ │ │ └── mod.scala │ │ └── s │ │ │ └── std │ │ │ ├── build.sbt │ │ │ ├── project │ │ │ ├── build.properties │ │ │ └── plugins.sbt │ │ │ ├── readme.md │ │ │ └── src │ │ │ └── main │ │ │ └── scala │ │ │ └── typings │ │ │ └── std │ │ │ ├── Array.scala │ │ │ └── stdRequire.scala │ ├── check │ │ └── c │ │ │ └── cldrjs │ │ │ └── src │ │ │ └── main │ │ │ └── scala │ │ │ └── typings │ │ │ └── cldrjs │ │ │ └── global.scala │ └── in │ │ ├── cldrjs │ │ ├── cldr.js-event.d.ts │ │ ├── cldr.js-supplemental.d.ts │ │ ├── index.d.ts │ │ └── tsconfig.json │ │ └── stdlib.d.ts ├── commander │ ├── check-3 │ │ ├── c │ │ │ └── commander │ │ │ │ ├── build.sbt │ │ │ │ ├── project │ │ │ │ ├── build.properties │ │ │ │ └── plugins.sbt │ │ │ │ ├── readme.md │ │ │ │ └── src │ │ │ │ └── main │ │ │ │ ├── resources │ │ │ │ └── NPM_DEPENDENCIES │ │ │ │ └── scala │ │ │ │ └── typings │ │ │ │ └── commander │ │ │ │ ├── commanderRequire.scala │ │ │ │ └── mod.scala │ │ ├── n │ │ │ └── node │ │ │ │ ├── build.sbt │ │ │ │ ├── project │ │ │ │ ├── build.properties │ │ │ │ └── plugins.sbt │ │ │ │ ├── readme.md │ │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── scala │ │ │ │ └── typings │ │ │ │ └── node │ │ │ │ ├── NodeJS.scala │ │ │ │ └── nodeRequire.scala │ │ └── s │ │ │ └── std │ │ │ ├── build.sbt │ │ │ ├── project │ │ │ ├── build.properties │ │ │ └── plugins.sbt │ │ │ ├── readme.md │ │ │ └── src │ │ │ └── main │ │ │ └── scala │ │ │ └── typings │ │ │ └── std │ │ │ ├── Array.scala │ │ │ ├── RegExp.scala │ │ │ └── stdRequire.scala │ └── in │ │ ├── commander │ │ ├── package.json │ │ └── typings │ │ │ └── index.d.ts │ │ ├── node │ │ └── index.d.ts │ │ └── stdlib.d.ts ├── const-enum │ ├── check-3 │ │ └── c │ │ │ └── const-enum │ │ │ ├── build.sbt │ │ │ ├── project │ │ │ ├── build.properties │ │ │ └── plugins.sbt │ │ │ ├── readme.md │ │ │ └── src │ │ │ └── main │ │ │ └── scala │ │ │ └── typings │ │ │ └── constEnum │ │ │ ├── constEnumDoubles.scala │ │ │ ├── constEnumInts.scala │ │ │ ├── constEnumRequire.scala │ │ │ ├── constEnumStrings.scala │ │ │ └── mod.scala │ └── in │ │ ├── const-enum │ │ └── index.d.ts │ │ └── stdlib.d.ts ├── create-error │ ├── check-3 │ │ ├── c │ │ │ └── create-error │ │ │ │ ├── build.sbt │ │ │ │ ├── project │ │ │ │ ├── build.properties │ │ │ │ └── plugins.sbt │ │ │ │ ├── readme.md │ │ │ │ └── src │ │ │ │ └── main │ │ │ │ ├── resources │ │ │ │ └── NPM_DEPENDENCIES │ │ │ │ └── scala │ │ │ │ └── typings │ │ │ │ └── createError │ │ │ │ ├── createErrorRequire.scala │ │ │ │ └── mod.scala │ │ └── s │ │ │ └── std │ │ │ ├── build.sbt │ │ │ ├── project │ │ │ ├── build.properties │ │ │ └── plugins.sbt │ │ │ ├── readme.md │ │ │ └── src │ │ │ └── main │ │ │ └── scala │ │ │ └── typings │ │ │ └── std │ │ │ ├── Error.scala │ │ │ └── stdRequire.scala │ └── in │ │ ├── create-error │ │ └── index.d.ts │ │ └── stdlib.d.ts ├── defaulted-tparams │ ├── check-3 │ │ ├── d │ │ │ └── defaulted-tparams │ │ │ │ ├── build.sbt │ │ │ │ ├── project │ │ │ │ ├── build.properties │ │ │ │ └── plugins.sbt │ │ │ │ ├── readme.md │ │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── scala │ │ │ │ └── typings │ │ │ │ └── defaultedTparams │ │ │ │ ├── Queue.scala │ │ │ │ ├── defaultedTparamsRequire.scala │ │ │ │ └── global.scala │ │ └── s │ │ │ └── std │ │ │ ├── build.sbt │ │ │ ├── project │ │ │ ├── build.properties │ │ │ └── plugins.sbt │ │ │ ├── readme.md │ │ │ └── src │ │ │ └── main │ │ │ └── scala │ │ │ └── typings │ │ │ └── std │ │ │ ├── Iterable.scala │ │ │ └── stdRequire.scala │ └── in │ │ ├── defaulted-tparams │ │ └── index.d.ts │ │ └── stdlib.d.ts ├── documentation │ ├── check-3 │ │ └── d │ │ │ └── documentation │ │ │ ├── build.sbt │ │ │ ├── project │ │ │ ├── build.properties │ │ │ └── plugins.sbt │ │ │ ├── readme.md │ │ │ └── src │ │ │ └── main │ │ │ └── scala │ │ │ └── typings │ │ │ └── documentation │ │ │ ├── Branch.scala │ │ │ ├── Child.scala │ │ │ ├── Complex.scala │ │ │ ├── Leaf.scala │ │ │ ├── Nullability.scala │ │ │ ├── Parent.scala │ │ │ ├── Tree.scala │ │ │ ├── documentationRequire.scala │ │ │ └── documentationStrings.scala │ └── in │ │ ├── documentation │ │ └── index.d.ts │ │ └── stdlib.d.ts ├── echarts │ ├── check-3 │ │ └── e │ │ │ └── echarts │ │ │ ├── build.sbt │ │ │ ├── project │ │ │ ├── build.properties │ │ │ └── plugins.sbt │ │ │ ├── readme.md │ │ │ └── src │ │ │ └── main │ │ │ └── scala │ │ │ └── typings │ │ │ └── echarts │ │ │ ├── echarts.scala │ │ │ └── echartsRequire.scala │ └── in │ │ ├── echarts │ │ └── index.d.ts │ │ └── stdlib.d.ts ├── elasticsearch-js │ ├── check-3 │ │ ├── e │ │ │ └── elasticsearch-js │ │ │ │ ├── build.sbt │ │ │ │ ├── project │ │ │ │ ├── build.properties │ │ │ │ └── plugins.sbt │ │ │ │ ├── readme.md │ │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── scala │ │ │ │ └── typings │ │ │ │ └── elasticsearchJs │ │ │ │ ├── elasticsearchJsRequire.scala │ │ │ │ └── mod.scala │ │ └── s │ │ │ └── std │ │ │ ├── build.sbt │ │ │ ├── project │ │ │ ├── build.properties │ │ │ └── plugins.sbt │ │ │ ├── readme.md │ │ │ └── src │ │ │ └── main │ │ │ └── scala │ │ │ └── typings │ │ │ └── std │ │ │ ├── Promise.scala │ │ │ └── stdRequire.scala │ └── in │ │ ├── elasticsearch-js │ │ └── index.d.ts │ │ └── stdlib.d.ts ├── electron │ ├── check-3 │ │ ├── e │ │ │ └── electron │ │ │ │ ├── build.sbt │ │ │ │ ├── project │ │ │ │ ├── build.properties │ │ │ │ └── plugins.sbt │ │ │ │ ├── readme.md │ │ │ │ └── src │ │ │ │ └── main │ │ │ │ ├── resources │ │ │ │ └── NPM_DEPENDENCIES │ │ │ │ └── scala │ │ │ │ └── typings │ │ │ │ └── electron │ │ │ │ ├── Electron.scala │ │ │ │ ├── NodeJS.scala │ │ │ │ ├── electronRequire.scala │ │ │ │ ├── electronStrings.scala │ │ │ │ ├── global.scala │ │ │ │ ├── mod.scala │ │ │ │ ├── originalFsMod.scala │ │ │ │ └── package.scala │ │ ├── n │ │ │ └── node │ │ │ │ ├── build.sbt │ │ │ │ ├── project │ │ │ │ ├── build.properties │ │ │ │ └── plugins.sbt │ │ │ │ ├── readme.md │ │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── scala │ │ │ │ └── typings │ │ │ │ └── node │ │ │ │ ├── Error.scala │ │ │ │ ├── NodeJS.scala │ │ │ │ ├── SymbolConstructor.scala │ │ │ │ ├── fsMod.scala │ │ │ │ ├── global.scala │ │ │ │ ├── nodeRequire.scala │ │ │ │ ├── nodeStrings.scala │ │ │ │ └── streamMod.scala │ │ └── s │ │ │ └── std │ │ │ ├── build.sbt │ │ │ ├── project │ │ │ ├── build.properties │ │ │ └── plugins.sbt │ │ │ ├── readme.md │ │ │ └── src │ │ │ └── main │ │ │ └── scala │ │ │ └── typings │ │ │ └── std │ │ │ ├── Array.scala │ │ │ ├── Boolean.scala │ │ │ ├── Event.scala │ │ │ ├── Function.scala │ │ │ ├── IArguments.scala │ │ │ ├── Number.scala │ │ │ ├── Object.scala │ │ │ ├── RegExp.scala │ │ │ ├── String.scala │ │ │ └── stdRequire.scala │ └── in │ │ ├── electron │ │ ├── electron.d.ts │ │ ├── package.json │ │ └── tsconfig.json │ │ ├── node │ │ └── index.d.ts │ │ └── stdlib.d.ts ├── expand-type-parameters │ ├── check-3 │ │ └── e │ │ │ └── expand-type-parameters │ │ │ ├── build.sbt │ │ │ ├── project │ │ │ ├── build.properties │ │ │ └── plugins.sbt │ │ │ ├── readme.md │ │ │ └── src │ │ │ └── main │ │ │ └── scala │ │ │ └── typings │ │ │ └── expandTypeParameters │ │ │ ├── A.scala │ │ │ ├── B.scala │ │ │ ├── C.scala │ │ │ ├── Example.scala │ │ │ ├── TA.scala │ │ │ ├── expandTypeParametersRequire.scala │ │ │ └── expandTypeParametersStrings.scala │ └── in │ │ ├── expand-type-parameters │ │ └── index.d.ts │ │ └── stdlib.d.ts ├── export-as-namespace │ ├── check-3 │ │ ├── a │ │ │ ├── angular-agility │ │ │ │ ├── build.sbt │ │ │ │ ├── project │ │ │ │ │ ├── build.properties │ │ │ │ │ └── plugins.sbt │ │ │ │ ├── readme.md │ │ │ │ └── src │ │ │ │ │ └── main │ │ │ │ │ └── scala │ │ │ │ │ └── typings │ │ │ │ │ └── angularAgility │ │ │ │ │ ├── aa.scala │ │ │ │ │ └── angularAgilityRequire.scala │ │ │ └── angular │ │ │ │ ├── build.sbt │ │ │ │ ├── project │ │ │ │ ├── build.properties │ │ │ │ └── plugins.sbt │ │ │ │ ├── readme.md │ │ │ │ └── src │ │ │ │ └── main │ │ │ │ ├── resources │ │ │ │ └── NPM_DEPENDENCIES │ │ │ │ └── scala │ │ │ │ └── typings │ │ │ │ └── angular │ │ │ │ ├── JQLite.scala │ │ │ │ ├── JQuery.scala │ │ │ │ ├── angularRequire.scala │ │ │ │ ├── anon.scala │ │ │ │ ├── global.scala │ │ │ │ ├── mod.scala │ │ │ │ └── package.scala │ │ └── s │ │ │ └── std │ │ │ ├── build.sbt │ │ │ ├── project │ │ │ ├── build.properties │ │ │ └── plugins.sbt │ │ │ ├── readme.md │ │ │ └── src │ │ │ └── main │ │ │ └── scala │ │ │ └── typings │ │ │ └── std │ │ │ ├── Array.scala │ │ │ ├── ArrayLike.scala │ │ │ ├── Document.scala │ │ │ ├── Element.scala │ │ │ ├── ReadonlyArray.scala │ │ │ ├── package.scala │ │ │ └── stdRequire.scala │ ├── check │ │ └── a │ │ │ └── angular │ │ │ └── src │ │ │ └── main │ │ │ └── scala │ │ │ └── typings │ │ │ └── angular │ │ │ └── global.scala │ └── in │ │ ├── angular-agility │ │ ├── index.d.ts │ │ └── tsconfig.json │ │ ├── angular │ │ ├── index.d.ts │ │ └── jqlite.d.ts │ │ └── stdlib.d.ts ├── firebase-admin │ ├── check-3 │ │ ├── f │ │ │ └── firebase-admin │ │ │ │ ├── build.sbt │ │ │ │ ├── project │ │ │ │ ├── build.properties │ │ │ │ └── plugins.sbt │ │ │ │ ├── readme.md │ │ │ │ └── src │ │ │ │ └── main │ │ │ │ ├── resources │ │ │ │ └── NPM_DEPENDENCIES │ │ │ │ └── scala │ │ │ │ └── typings │ │ │ │ └── firebaseAdmin │ │ │ │ ├── firebaseAdminRequire.scala │ │ │ │ └── mod.scala │ │ └── g │ │ │ └── google-cloud__firestore │ │ │ ├── build.sbt │ │ │ ├── project │ │ │ ├── build.properties │ │ │ └── plugins.sbt │ │ │ ├── readme.md │ │ │ └── src │ │ │ └── main │ │ │ ├── resources │ │ │ └── NPM_DEPENDENCIES │ │ │ └── scala │ │ │ └── typings │ │ │ └── googleCloudFirestore │ │ │ ├── FirebaseFirestore.scala │ │ │ ├── global.scala │ │ │ ├── googleCloudFirestoreRequire.scala │ │ │ └── mod.scala │ └── in │ │ ├── @google-cloud │ │ └── firestore │ │ │ ├── package.json │ │ │ └── types │ │ │ └── firestore.d.ts │ │ ├── firebase-admin │ │ ├── lib │ │ │ └── index.d.ts │ │ └── package.json │ │ └── stdlib.d.ts ├── firebase │ ├── check-3 │ │ └── f │ │ │ └── firebase │ │ │ ├── build.sbt │ │ │ ├── project │ │ │ ├── build.properties │ │ │ └── plugins.sbt │ │ │ ├── readme.md │ │ │ └── src │ │ │ └── main │ │ │ └── scala │ │ │ └── typings │ │ │ └── firebase │ │ │ ├── FirebaseTest.scala │ │ │ ├── Foo.scala │ │ │ └── firebaseRequire.scala │ └── in │ │ ├── firebase │ │ └── index.d.ts │ │ └── stdlib.d.ts ├── fp-ts │ ├── check-3 │ │ └── f │ │ │ └── fp-ts │ │ │ ├── build.sbt │ │ │ ├── project │ │ │ ├── build.properties │ │ │ └── plugins.sbt │ │ │ ├── readme.md │ │ │ └── src │ │ │ └── main │ │ │ ├── resources │ │ │ └── NPM_DEPENDENCIES │ │ │ └── scala │ │ │ └── typings │ │ │ └── fpTs │ │ │ ├── fpTsRequire.scala │ │ │ ├── libConstMod.scala │ │ │ ├── libEitherMod.scala │ │ │ ├── libEitherTMod.scala │ │ │ ├── libHktMod.scala │ │ │ ├── libTaskMod.scala │ │ │ └── mod.scala │ └── in │ │ ├── fp-ts │ │ ├── lib │ │ │ ├── Const.d.ts │ │ │ ├── Either.d.ts │ │ │ ├── EitherT.d.ts │ │ │ ├── HKT.d.ts │ │ │ ├── Task.d.ts │ │ │ └── index.d.ts │ │ └── package.json │ │ └── stdlib.d.ts ├── fullcalendar │ ├── check-3 │ │ └── f │ │ │ └── fullcalendar │ │ │ ├── build.sbt │ │ │ ├── project │ │ │ ├── build.properties │ │ │ └── plugins.sbt │ │ │ ├── readme.md │ │ │ └── src │ │ │ └── main │ │ │ └── scala │ │ │ └── typings │ │ │ └── fullcalendar │ │ │ ├── emitterMixinMod.scala │ │ │ ├── eventPeriodMod.scala │ │ │ ├── fullcalendarRequire.scala │ │ │ └── mixinMod.scala │ └── in │ │ ├── fullcalendar │ │ └── fullcalendar.d.ts │ │ └── stdlib.d.ts ├── insight │ ├── check-3 │ │ └── i │ │ │ └── insight │ │ │ ├── build.sbt │ │ │ ├── project │ │ │ ├── build.properties │ │ │ └── plugins.sbt │ │ │ ├── readme.md │ │ │ └── src │ │ │ └── main │ │ │ └── scala │ │ │ └── typings │ │ │ └── insight │ │ │ ├── insightRequire.scala │ │ │ └── mod.scala │ └── in │ │ ├── insight │ │ └── index.d.ts │ │ └── stdlib.d.ts ├── interface-package │ ├── check-3 │ │ └── i │ │ │ └── interface-package │ │ │ ├── build.sbt │ │ │ ├── project │ │ │ ├── build.properties │ │ │ └── plugins.sbt │ │ │ ├── readme.md │ │ │ └── src │ │ │ └── main │ │ │ └── scala │ │ │ └── typings │ │ │ └── interfacePackage │ │ │ ├── interfacePackageRequire.scala │ │ │ └── mod.scala │ └── in │ │ ├── interface-package │ │ └── index.d.ts │ │ └── stdlib.d.ts ├── keyof │ ├── check-3 │ │ └── k │ │ │ └── keyof │ │ │ ├── build.sbt │ │ │ ├── project │ │ │ ├── build.properties │ │ │ └── plugins.sbt │ │ │ ├── readme.md │ │ │ └── src │ │ │ └── main │ │ │ └── scala │ │ │ └── typings │ │ │ └── keyof │ │ │ ├── A.scala │ │ │ ├── B.scala │ │ │ ├── anon.scala │ │ │ ├── global.scala │ │ │ ├── keyofRequire.scala │ │ │ └── keyofStrings.scala │ └── in │ │ ├── keyof │ │ └── index.d.ts │ │ └── stdlib.d.ts ├── material-ui │ ├── check-japgolly-3 │ │ ├── m │ │ │ └── material-ui │ │ │ │ ├── build.sbt │ │ │ │ ├── project │ │ │ │ ├── build.properties │ │ │ │ └── plugins.sbt │ │ │ │ ├── readme.md │ │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── scala │ │ │ │ └── mylib.internal.baz │ │ │ │ └── materialUi │ │ │ │ ├── MaterialUI.scala │ │ │ │ ├── bottomNavigationBottomNavigationItemMod.scala │ │ │ │ ├── components │ │ │ │ ├── Accessibility.scala │ │ │ │ ├── ActionAccessibility.scala │ │ │ │ ├── BottomNavigationItem.scala │ │ │ │ ├── SharedBuilder_Object1264044994.scala │ │ │ │ └── SvgIcon.scala │ │ │ │ ├── global.scala │ │ │ │ ├── materialUiRequire.scala │ │ │ │ ├── stylesMod.scala │ │ │ │ └── svgIconsActionAccessibilityMod.scala │ │ ├── r │ │ │ └── react │ │ │ │ ├── build.sbt │ │ │ │ ├── project │ │ │ │ ├── build.properties │ │ │ │ └── plugins.sbt │ │ │ │ ├── readme.md │ │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── scala │ │ │ │ └── mylib.internal.baz │ │ │ │ ├── StBuildingComponent.scala │ │ │ │ └── react │ │ │ │ ├── anon.scala │ │ │ │ ├── mod.scala │ │ │ │ ├── reactRequire.scala │ │ │ │ └── reactStrings.scala │ │ └── s │ │ │ └── std │ │ │ ├── build.sbt │ │ │ ├── project │ │ │ ├── build.properties │ │ │ └── plugins.sbt │ │ │ ├── readme.md │ │ │ └── src │ │ │ └── main │ │ │ └── scala │ │ │ └── mylib.internal.baz │ │ │ └── std │ │ │ ├── Array.scala │ │ │ ├── Function.scala │ │ │ ├── HTMLElementTagNameMap.scala │ │ │ ├── Node.scala │ │ │ ├── SVGElementTagNameMap.scala │ │ │ ├── package.scala │ │ │ └── stdRequire.scala │ ├── check-japgolly │ │ ├── m │ │ │ └── material-ui │ │ │ │ ├── build.sbt │ │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── scala │ │ │ │ └── mylib.internal.baz │ │ │ │ └── materialUi │ │ │ │ ├── MaterialUI.scala │ │ │ │ ├── accessibilityMod.scala │ │ │ │ ├── bottomNavigationItemMod.scala │ │ │ │ ├── components │ │ │ │ ├── Accessibility.scala │ │ │ │ ├── ActionAccessibility.scala │ │ │ │ ├── BottomNavigationItem.scala │ │ │ │ ├── SharedBuilder_Object_159303587.scala │ │ │ │ └── SvgIcon.scala │ │ │ │ ├── global.scala │ │ │ │ ├── materialUiRequire.scala │ │ │ │ └── mod.scala │ │ ├── r │ │ │ └── react │ │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── scala │ │ │ │ └── mylib.internal.baz │ │ │ │ ├── StBuildingComponent.scala │ │ │ │ └── react │ │ │ │ ├── anon.scala │ │ │ │ ├── mod.scala │ │ │ │ ├── reactRequire.scala │ │ │ │ └── reactStrings.scala │ │ └── s │ │ │ └── std │ │ │ └── src │ │ │ └── main │ │ │ └── scala │ │ │ └── mylib.internal.baz │ │ │ └── std │ │ │ ├── Array.scala │ │ │ ├── Function.scala │ │ │ ├── HTMLElementTagNameMap.scala │ │ │ ├── Node.scala │ │ │ ├── SVGElementTagNameMap.scala │ │ │ ├── package.scala │ │ │ └── stdRequire.scala │ ├── check-slinky-3 │ │ ├── m │ │ │ └── material-ui │ │ │ │ ├── build.sbt │ │ │ │ ├── project │ │ │ │ ├── build.properties │ │ │ │ └── plugins.sbt │ │ │ │ ├── readme.md │ │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── scala │ │ │ │ └── typingsSlinky │ │ │ │ └── materialUi │ │ │ │ ├── MaterialUI.scala │ │ │ │ ├── bottomNavigationBottomNavigationItemMod.scala │ │ │ │ ├── components │ │ │ │ ├── Accessibility.scala │ │ │ │ ├── ActionAccessibility.scala │ │ │ │ ├── BottomNavigationItem.scala │ │ │ │ ├── SharedBuilder_Object1264044994.scala │ │ │ │ └── SvgIcon.scala │ │ │ │ ├── global.scala │ │ │ │ ├── materialUiRequire.scala │ │ │ │ ├── stylesMod.scala │ │ │ │ └── svgIconsActionAccessibilityMod.scala │ │ ├── r │ │ │ └── react │ │ │ │ ├── build.sbt │ │ │ │ ├── project │ │ │ │ ├── build.properties │ │ │ │ └── plugins.sbt │ │ │ │ ├── readme.md │ │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── scala │ │ │ │ └── typingsSlinky │ │ │ │ ├── StBuildingComponent.scala │ │ │ │ └── react │ │ │ │ ├── anon.scala │ │ │ │ ├── mod.scala │ │ │ │ ├── reactRequire.scala │ │ │ │ └── reactStrings.scala │ │ └── s │ │ │ └── std │ │ │ ├── build.sbt │ │ │ ├── project │ │ │ ├── build.properties │ │ │ └── plugins.sbt │ │ │ ├── readme.md │ │ │ └── src │ │ │ └── main │ │ │ └── scala │ │ │ └── typingsSlinky │ │ │ └── std │ │ │ ├── Array.scala │ │ │ ├── Function.scala │ │ │ ├── HTMLElementTagNameMap.scala │ │ │ ├── Node.scala │ │ │ ├── SVGElementTagNameMap.scala │ │ │ ├── package.scala │ │ │ └── stdRequire.scala │ └── in │ │ ├── material-ui │ │ ├── index.d.ts │ │ └── tsconfig.json │ │ ├── react │ │ ├── index.d.ts │ │ ├── tsconfig.json │ │ └── tslint.json │ │ └── stdlib.d.ts ├── monaco-editor │ ├── check-3 │ │ ├── m │ │ │ └── monaco-editor │ │ │ │ ├── build.sbt │ │ │ │ ├── project │ │ │ │ ├── build.properties │ │ │ │ └── plugins.sbt │ │ │ │ ├── readme.md │ │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── scala │ │ │ │ └── typings │ │ │ │ └── monacoEditor │ │ │ │ ├── anon.scala │ │ │ │ ├── global.scala │ │ │ │ ├── monaco.scala │ │ │ │ └── monacoEditorRequire.scala │ │ └── s │ │ │ └── std │ │ │ ├── build.sbt │ │ │ ├── project │ │ │ ├── build.properties │ │ │ └── plugins.sbt │ │ │ ├── readme.md │ │ │ └── src │ │ │ └── main │ │ │ └── scala │ │ │ └── typings │ │ │ └── std │ │ │ ├── package.scala │ │ │ └── stdRequire.scala │ └── in │ │ ├── monaco-editor │ │ └── index.d.ts │ │ └── stdlib.d.ts ├── mongoose-simple-random │ ├── check-3 │ │ ├── m │ │ │ ├── mongoose-simple-random │ │ │ │ ├── build.sbt │ │ │ │ ├── project │ │ │ │ │ ├── build.properties │ │ │ │ │ └── plugins.sbt │ │ │ │ ├── readme.md │ │ │ │ └── src │ │ │ │ │ └── main │ │ │ │ │ ├── resources │ │ │ │ │ └── NPM_DEPENDENCIES │ │ │ │ │ └── scala │ │ │ │ │ └── typings │ │ │ │ │ └── mongooseSimpleRandom │ │ │ │ │ ├── mod.scala │ │ │ │ │ └── mongooseSimpleRandomRequire.scala │ │ │ └── mongoose │ │ │ │ ├── build.sbt │ │ │ │ ├── project │ │ │ │ ├── build.properties │ │ │ │ └── plugins.sbt │ │ │ │ ├── readme.md │ │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── scala │ │ │ │ └── typings │ │ │ │ └── mongoose │ │ │ │ ├── mod.scala │ │ │ │ └── mongooseRequire.scala │ │ ├── n │ │ │ └── node │ │ │ │ ├── build.sbt │ │ │ │ ├── project │ │ │ │ ├── build.properties │ │ │ │ └── plugins.sbt │ │ │ │ ├── readme.md │ │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── scala │ │ │ │ └── typings │ │ │ │ └── node │ │ │ │ ├── NodeJS.scala │ │ │ │ └── nodeRequire.scala │ │ └── s │ │ │ └── std │ │ │ ├── build.sbt │ │ │ ├── project │ │ │ ├── build.properties │ │ │ └── plugins.sbt │ │ │ ├── readme.md │ │ │ └── src │ │ │ └── main │ │ │ └── scala │ │ │ └── typings │ │ │ └── std │ │ │ ├── Array.scala │ │ │ ├── Object.scala │ │ │ └── stdRequire.scala │ └── in │ │ ├── mongoose-simple-random │ │ └── index.d.ts │ │ ├── mongoose │ │ └── index.d.ts │ │ ├── node │ │ └── index.d.ts │ │ └── stdlib.d.ts ├── numjs │ ├── check-3 │ │ ├── n │ │ │ ├── ndarray │ │ │ │ ├── build.sbt │ │ │ │ ├── project │ │ │ │ │ ├── build.properties │ │ │ │ │ └── plugins.sbt │ │ │ │ ├── readme.md │ │ │ │ └── src │ │ │ │ │ └── main │ │ │ │ │ └── scala │ │ │ │ │ └── typings │ │ │ │ │ └── ndarray │ │ │ │ │ ├── mod.scala │ │ │ │ │ └── ndarrayRequire.scala │ │ │ └── numjs │ │ │ │ ├── build.sbt │ │ │ │ ├── project │ │ │ │ ├── build.properties │ │ │ │ └── plugins.sbt │ │ │ │ ├── readme.md │ │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── scala │ │ │ │ └── typings │ │ │ │ └── numjs │ │ │ │ ├── mod.scala │ │ │ │ └── numjsRequire.scala │ │ └── s │ │ │ └── std │ │ │ ├── build.sbt │ │ │ ├── project │ │ │ ├── build.properties │ │ │ └── plugins.sbt │ │ │ ├── readme.md │ │ │ └── src │ │ │ └── main │ │ │ └── scala │ │ │ └── typings │ │ │ └── std │ │ │ ├── Array.scala │ │ │ └── stdRequire.scala │ └── in │ │ ├── ndarray │ │ └── index.d.ts │ │ ├── numjs │ │ └── index.d.ts │ │ └── stdlib.d.ts ├── pixi.js │ ├── check-3 │ │ ├── e │ │ │ └── eventemitter3 │ │ │ │ ├── build.sbt │ │ │ │ ├── project │ │ │ │ ├── build.properties │ │ │ │ └── plugins.sbt │ │ │ │ ├── readme.md │ │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── scala │ │ │ │ └── typings │ │ │ │ └── eventemitter3 │ │ │ │ ├── eventemitter3Require.scala │ │ │ │ └── mod.scala │ │ └── p │ │ │ ├── pixi__utils │ │ │ ├── build.sbt │ │ │ ├── project │ │ │ │ ├── build.properties │ │ │ │ └── plugins.sbt │ │ │ ├── readme.md │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── scala │ │ │ │ └── typings │ │ │ │ └── pixiUtils │ │ │ │ ├── mod.scala │ │ │ │ └── pixiUtilsRequire.scala │ │ │ └── pixi_dot_js │ │ │ ├── build.sbt │ │ │ ├── project │ │ │ ├── build.properties │ │ │ └── plugins.sbt │ │ │ ├── readme.md │ │ │ └── src │ │ │ └── main │ │ │ └── scala │ │ │ └── typings │ │ │ └── pixiJs │ │ │ ├── mod.scala │ │ │ └── pixiJsRequire.scala │ └── in │ │ ├── @pixi │ │ └── utils │ │ │ └── index.d.ts │ │ ├── eventemitter3 │ │ └── index.d.ts │ │ ├── pixi.js │ │ └── index.d.ts │ │ └── stdlib.d.ts ├── prisma │ ├── check-3 │ │ ├── p │ │ │ └── prisma │ │ │ │ ├── build.sbt │ │ │ │ ├── project │ │ │ │ ├── build.properties │ │ │ │ └── plugins.sbt │ │ │ │ ├── readme.md │ │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── scala │ │ │ │ └── typings │ │ │ │ └── prisma │ │ │ │ ├── mod.scala │ │ │ │ ├── prismaRequire.scala │ │ │ │ └── prismaStrings.scala │ │ └── s │ │ │ └── std │ │ │ ├── build.sbt │ │ │ ├── project │ │ │ ├── build.properties │ │ │ └── plugins.sbt │ │ │ ├── readme.md │ │ │ └── src │ │ │ └── main │ │ │ └── scala │ │ │ └── typings │ │ │ └── std │ │ │ ├── Array.scala │ │ │ ├── Error.scala │ │ │ ├── Promise.scala │ │ │ ├── PromiseLike.scala │ │ │ ├── ReadonlyArray.scala │ │ │ ├── RegExp.scala │ │ │ ├── TemplateStringsArray.scala │ │ │ ├── package.scala │ │ │ └── stdRequire.scala │ └── in │ │ ├── prisma │ │ └── index.d.ts │ │ └── stdlib.d.ts ├── properties │ ├── check-3 │ │ └── p │ │ │ └── properties │ │ │ ├── build.sbt │ │ │ ├── project │ │ │ ├── build.properties │ │ │ └── plugins.sbt │ │ │ ├── readme.md │ │ │ └── src │ │ │ └── main │ │ │ └── scala │ │ │ └── typings │ │ │ └── properties │ │ │ ├── mod.scala │ │ │ └── propertiesRequire.scala │ └── in │ │ ├── properties │ │ └── index.d.ts │ │ └── stdlib.d.ts ├── punchcard │ ├── check-3 │ │ ├── p │ │ │ └── punchcard │ │ │ │ ├── build.sbt │ │ │ │ ├── project │ │ │ │ ├── build.properties │ │ │ │ └── plugins.sbt │ │ │ │ ├── readme.md │ │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── scala │ │ │ │ └── typings │ │ │ │ └── punchcard │ │ │ │ ├── mod.scala │ │ │ │ └── punchcardRequire.scala │ │ └── s │ │ │ └── std │ │ │ ├── build.sbt │ │ │ ├── project │ │ │ ├── build.properties │ │ │ └── plugins.sbt │ │ │ ├── readme.md │ │ │ └── src │ │ │ └── main │ │ │ └── scala │ │ │ └── typings │ │ │ └── std │ │ │ ├── Array.scala │ │ │ ├── package.scala │ │ │ └── stdRequire.scala │ ├── check │ │ ├── p │ │ │ └── punchcard │ │ │ │ ├── build.sbt │ │ │ │ ├── project │ │ │ │ ├── build.properties │ │ │ │ └── plugins.sbt │ │ │ │ ├── readme.md │ │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── scala │ │ │ │ └── typings │ │ │ │ └── punchcard │ │ │ │ ├── mod.scala │ │ │ │ ├── punchcardRequire.scala │ │ │ │ └── punchcardStrings.scala │ │ └── s │ │ │ └── std │ │ │ ├── build.sbt │ │ │ ├── project │ │ │ ├── build.properties │ │ │ └── plugins.sbt │ │ │ ├── readme.md │ │ │ └── src │ │ │ └── main │ │ │ └── scala │ │ │ └── typings │ │ │ └── std │ │ │ ├── Array.scala │ │ │ ├── package.scala │ │ │ ├── stdRequire.scala │ │ │ └── stdStrings.scala │ └── in │ │ ├── punchcard │ │ └── index.d.ts │ │ └── stdlib.d.ts ├── react-icons │ ├── check-3 │ │ ├── r │ │ │ ├── react-icon-base │ │ │ │ ├── build.sbt │ │ │ │ ├── project │ │ │ │ │ ├── build.properties │ │ │ │ │ └── plugins.sbt │ │ │ │ ├── readme.md │ │ │ │ └── src │ │ │ │ │ └── main │ │ │ │ │ ├── resources │ │ │ │ │ └── NPM_DEPENDENCIES │ │ │ │ │ └── scala │ │ │ │ │ └── typings │ │ │ │ │ └── reactIconBase │ │ │ │ │ ├── mod.scala │ │ │ │ │ └── reactIconBaseRequire.scala │ │ │ ├── react-icons │ │ │ │ ├── build.sbt │ │ │ │ ├── project │ │ │ │ │ ├── build.properties │ │ │ │ │ └── plugins.sbt │ │ │ │ ├── readme.md │ │ │ │ └── src │ │ │ │ │ └── main │ │ │ │ │ ├── resources │ │ │ │ │ └── NPM_DEPENDENCIES │ │ │ │ │ └── scala │ │ │ │ │ └── typings │ │ │ │ │ └── reactIcons │ │ │ │ │ ├── fa500pxMod.scala │ │ │ │ │ ├── faAdjustMod.scala │ │ │ │ │ ├── faAdnMod.scala │ │ │ │ │ ├── faMod.scala │ │ │ │ │ └── reactIconsRequire.scala │ │ │ └── react │ │ │ │ ├── build.sbt │ │ │ │ ├── project │ │ │ │ ├── build.properties │ │ │ │ └── plugins.sbt │ │ │ │ ├── readme.md │ │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── scala │ │ │ │ └── typings │ │ │ │ └── react │ │ │ │ ├── anon.scala │ │ │ │ ├── mod.scala │ │ │ │ ├── reactRequire.scala │ │ │ │ └── reactStrings.scala │ │ └── s │ │ │ └── std │ │ │ ├── build.sbt │ │ │ ├── project │ │ │ ├── build.properties │ │ │ └── plugins.sbt │ │ │ ├── readme.md │ │ │ └── src │ │ │ └── main │ │ │ └── scala │ │ │ └── typings │ │ │ └── std │ │ │ ├── Array.scala │ │ │ ├── Element.scala │ │ │ ├── Event.scala │ │ │ ├── Function.scala │ │ │ ├── package.scala │ │ │ └── stdRequire.scala │ └── in │ │ ├── react-icon-base │ │ ├── index.d.ts │ │ ├── tsconfig.json │ │ └── tslint.json │ │ ├── react-icons │ │ ├── fa │ │ │ ├── 500px.d.ts │ │ │ ├── adjust.d.ts │ │ │ ├── adn.d.ts │ │ │ └── index.d.ts │ │ ├── index.d.ts │ │ ├── react-icons-tests.tsx │ │ ├── tsconfig.json │ │ └── tslint.json │ │ ├── react │ │ ├── index.d.ts │ │ ├── tsconfig.json │ │ └── tslint.json │ │ └── stdlib.d.ts ├── react-integration-test │ ├── check-japgolly-3 │ │ ├── c │ │ │ └── componentstest │ │ │ │ ├── build.sbt │ │ │ │ ├── project │ │ │ │ ├── build.properties │ │ │ │ └── plugins.sbt │ │ │ │ ├── readme.md │ │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── scala │ │ │ │ └── typingsJapgolly │ │ │ │ └── componentstest │ │ │ │ ├── anon.scala │ │ │ │ ├── components │ │ │ │ ├── Card.scala │ │ │ │ ├── Component.scala │ │ │ │ ├── Grid.scala │ │ │ │ ├── ObjectNames.scala │ │ │ │ ├── SharedBuilder_CardGridProps_878125950.scala │ │ │ │ ├── SharedBuilder_RefAttributes_421359150.scala │ │ │ │ └── VeryExotic.scala │ │ │ │ ├── componentstestRequire.scala │ │ │ │ └── mod.scala │ │ ├── r │ │ │ ├── react-bootstrap │ │ │ │ ├── build.sbt │ │ │ │ ├── project │ │ │ │ │ ├── build.properties │ │ │ │ │ └── plugins.sbt │ │ │ │ ├── readme.md │ │ │ │ └── src │ │ │ │ │ └── main │ │ │ │ │ ├── resources │ │ │ │ │ └── NPM_DEPENDENCIES │ │ │ │ │ └── scala │ │ │ │ │ └── typingsJapgolly │ │ │ │ │ └── reactBootstrap │ │ │ │ │ ├── components │ │ │ │ │ ├── ButtonGroup.scala │ │ │ │ │ └── ToggleButtonGroup.scala │ │ │ │ │ ├── libButtonGroupMod.scala │ │ │ │ │ ├── libMod.scala │ │ │ │ │ ├── libToggleButtonGroupMod.scala │ │ │ │ │ ├── libUtilsBootstrapUtilsMod.scala │ │ │ │ │ ├── libUtilsCreateChainedFunctionMod.scala │ │ │ │ │ ├── libUtilsMod.scala │ │ │ │ │ ├── mod.scala │ │ │ │ │ ├── reactBootstrapRequire.scala │ │ │ │ │ └── reactBootstrapStrings.scala │ │ │ ├── react-contextmenu │ │ │ │ ├── build.sbt │ │ │ │ ├── project │ │ │ │ │ ├── build.properties │ │ │ │ │ └── plugins.sbt │ │ │ │ ├── readme.md │ │ │ │ └── src │ │ │ │ │ └── main │ │ │ │ │ ├── resources │ │ │ │ │ └── NPM_DEPENDENCIES │ │ │ │ │ └── scala │ │ │ │ │ └── typingsJapgolly │ │ │ │ │ └── reactContextmenu │ │ │ │ │ ├── components │ │ │ │ │ ├── ContextMenu.scala │ │ │ │ │ ├── ContextMenuTrigger.scala │ │ │ │ │ ├── MenuItem.scala │ │ │ │ │ └── SubMenu.scala │ │ │ │ │ ├── mod.scala │ │ │ │ │ ├── modulesActionsMod.scala │ │ │ │ │ └── reactContextmenuRequire.scala │ │ │ ├── react-dropzone │ │ │ │ ├── build.sbt │ │ │ │ ├── project │ │ │ │ │ ├── build.properties │ │ │ │ │ └── plugins.sbt │ │ │ │ ├── readme.md │ │ │ │ └── src │ │ │ │ │ └── main │ │ │ │ │ ├── resources │ │ │ │ │ └── NPM_DEPENDENCIES │ │ │ │ │ └── scala │ │ │ │ │ └── typingsJapgolly │ │ │ │ │ └── reactDropzone │ │ │ │ │ ├── components │ │ │ │ │ └── ReactDropzone.scala │ │ │ │ │ ├── mod.scala │ │ │ │ │ ├── reactDropzoneRequire.scala │ │ │ │ │ └── reactDropzoneStrings.scala │ │ │ ├── react-markdown │ │ │ │ ├── build.sbt │ │ │ │ ├── project │ │ │ │ │ ├── build.properties │ │ │ │ │ └── plugins.sbt │ │ │ │ ├── readme.md │ │ │ │ └── src │ │ │ │ │ └── main │ │ │ │ │ └── scala │ │ │ │ │ └── typingsJapgolly │ │ │ │ │ └── reactMarkdown │ │ │ │ │ ├── components │ │ │ │ │ └── ReactMarkdown.scala │ │ │ │ │ ├── mod.scala │ │ │ │ │ └── reactMarkdownRequire.scala │ │ │ ├── react-native │ │ │ │ ├── build.sbt │ │ │ │ ├── project │ │ │ │ │ ├── build.properties │ │ │ │ │ └── plugins.sbt │ │ │ │ ├── readme.md │ │ │ │ └── src │ │ │ │ │ └── main │ │ │ │ │ └── scala │ │ │ │ │ └── typingsJapgolly │ │ │ │ │ └── reactNative │ │ │ │ │ ├── ViewToken.scala │ │ │ │ │ ├── ViewabilityConfig.scala │ │ │ │ │ ├── ViewabilityConfigCallbackPair.scala │ │ │ │ │ ├── anon.scala │ │ │ │ │ └── reactNativeRequire.scala │ │ │ ├── react-select │ │ │ │ ├── build.sbt │ │ │ │ ├── project │ │ │ │ │ ├── build.properties │ │ │ │ │ └── plugins.sbt │ │ │ │ ├── readme.md │ │ │ │ └── src │ │ │ │ │ └── main │ │ │ │ │ └── scala │ │ │ │ │ └── typingsJapgolly │ │ │ │ │ └── reactSelect │ │ │ │ │ ├── components │ │ │ │ │ └── ReactSelect.scala │ │ │ │ │ ├── mod.scala │ │ │ │ │ └── reactSelectRequire.scala │ │ │ └── react │ │ │ │ ├── build.sbt │ │ │ │ ├── project │ │ │ │ ├── build.properties │ │ │ │ └── plugins.sbt │ │ │ │ ├── readme.md │ │ │ │ └── src │ │ │ │ └── main │ │ │ │ ├── resources │ │ │ │ └── NPM_DEPENDENCIES │ │ │ │ └── scala │ │ │ │ └── typingsJapgolly │ │ │ │ ├── StBuildingComponent.scala │ │ │ │ └── react │ │ │ │ ├── anon.scala │ │ │ │ ├── components │ │ │ │ ├── Fragment.scala │ │ │ │ ├── Profiler.scala │ │ │ │ ├── SharedBuilder_DetailedHTMLProps_364684144.scala │ │ │ │ ├── StrictMode.scala │ │ │ │ ├── Suspense.scala │ │ │ │ ├── a.scala │ │ │ │ ├── abbr.scala │ │ │ │ ├── address.scala │ │ │ │ ├── area.scala │ │ │ │ ├── article.scala │ │ │ │ ├── aside.scala │ │ │ │ ├── audio.scala │ │ │ │ ├── b.scala │ │ │ │ ├── base.scala │ │ │ │ ├── bdi.scala │ │ │ │ ├── bdo.scala │ │ │ │ ├── big.scala │ │ │ │ └── view.scala │ │ │ │ ├── global.scala │ │ │ │ ├── mod │ │ │ │ ├── AbstractView.scala │ │ │ │ ├── AllHTMLAttributes.scala │ │ │ │ ├── AnchorHTMLAttributes.scala │ │ │ │ ├── AnimationEvent.scala │ │ │ │ ├── AreaHTMLAttributes.scala │ │ │ │ ├── AriaAttributes.scala │ │ │ │ ├── Attributes.scala │ │ │ │ ├── BaseHTMLAttributes.scala │ │ │ │ ├── BaseSyntheticEvent.scala │ │ │ │ ├── BlockquoteHTMLAttributes.scala │ │ │ │ ├── ButtonHTMLAttributes.scala │ │ │ │ ├── CSSProperties.scala │ │ │ │ ├── CanvasHTMLAttributes.scala │ │ │ │ ├── ChangeEvent.scala │ │ │ │ ├── ChildContextProvider.scala │ │ │ │ ├── ClassAttributes.scala │ │ │ │ ├── ClassicComponent.scala │ │ │ │ ├── ClassicComponentClass.scala │ │ │ │ ├── ClipboardEvent.scala │ │ │ │ ├── ColHTMLAttributes.scala │ │ │ │ ├── ColgroupHTMLAttributes.scala │ │ │ │ ├── Component.scala │ │ │ │ ├── ComponentClass.scala │ │ │ │ ├── ComponentElement.scala │ │ │ │ ├── ComponentFactory.scala │ │ │ │ ├── ComponentLifecycle.scala │ │ │ │ ├── ComponentProps.scala │ │ │ │ ├── ComponentSpec.scala │ │ │ │ ├── CompositionEvent.scala │ │ │ │ ├── ConsumerProps.scala │ │ │ │ ├── Context.scala │ │ │ │ ├── ContextType.scala │ │ │ │ ├── DOMAttributes.scala │ │ │ │ ├── DOMElement.scala │ │ │ │ ├── DOMFactory.scala │ │ │ │ ├── DataHTMLAttributes.scala │ │ │ │ ├── DelHTMLAttributes.scala │ │ │ │ ├── DeprecatedLifecycle.scala │ │ │ │ ├── DetailedHTMLFactory.scala │ │ │ │ ├── DetailedReactHTMLElement.scala │ │ │ │ ├── DetailsHTMLAttributes.scala │ │ │ │ ├── DialogHTMLAttributes.scala │ │ │ │ ├── DragEvent.scala │ │ │ │ ├── EmbedHTMLAttributes.scala │ │ │ │ ├── ErrorInfo.scala │ │ │ │ ├── ExoticComponent.scala │ │ │ │ ├── Factory.scala │ │ │ │ ├── FieldsetHTMLAttributes.scala │ │ │ │ ├── FocusEvent.scala │ │ │ │ ├── FormHTMLAttributes.scala │ │ │ │ ├── ForwardRefExoticComponent.scala │ │ │ │ ├── FunctionComponent.scala │ │ │ │ ├── FunctionComponentElement.scala │ │ │ │ ├── FunctionComponentFactory.scala │ │ │ │ ├── HTMLAttributes.scala │ │ │ │ ├── HTMLProps.scala │ │ │ │ ├── HtmlHTMLAttributes.scala │ │ │ │ ├── IframeHTMLAttributes.scala │ │ │ │ ├── ImgHTMLAttributes.scala │ │ │ │ ├── InputHTMLAttributes.scala │ │ │ │ ├── InsHTMLAttributes.scala │ │ │ │ ├── InvalidEvent.scala │ │ │ │ ├── KeyboardEvent.scala │ │ │ │ ├── KeygenHTMLAttributes.scala │ │ │ │ ├── LabelHTMLAttributes.scala │ │ │ │ ├── LazyExoticComponent.scala │ │ │ │ ├── LiHTMLAttributes.scala │ │ │ │ ├── LinkHTMLAttributes.scala │ │ │ │ ├── MapHTMLAttributes.scala │ │ │ │ ├── MediaHTMLAttributes.scala │ │ │ │ ├── MemoExoticComponent.scala │ │ │ │ ├── MenuHTMLAttributes.scala │ │ │ │ ├── MetaHTMLAttributes.scala │ │ │ │ ├── MeterHTMLAttributes.scala │ │ │ │ ├── Mixin.scala │ │ │ │ ├── MouseEvent.scala │ │ │ │ ├── MutableRefObject.scala │ │ │ │ ├── NamedExoticComponent.scala │ │ │ │ ├── NewLifecycle.scala │ │ │ │ ├── ObjectHTMLAttributes.scala │ │ │ │ ├── OlHTMLAttributes.scala │ │ │ │ ├── OptgroupHTMLAttributes.scala │ │ │ │ ├── OptionHTMLAttributes.scala │ │ │ │ ├── OutputHTMLAttributes.scala │ │ │ │ ├── ParamHTMLAttributes.scala │ │ │ │ ├── PointerEvent.scala │ │ │ │ ├── ProfilerProps.scala │ │ │ │ ├── ProgressHTMLAttributes.scala │ │ │ │ ├── Props.scala │ │ │ │ ├── ProviderExoticComponent.scala │ │ │ │ ├── ProviderProps.scala │ │ │ │ ├── PureComponent.scala │ │ │ │ ├── QuoteHTMLAttributes.scala │ │ │ │ ├── ReactChildren.scala │ │ │ │ ├── ReactDOM.scala │ │ │ │ ├── ReactElement.scala │ │ │ │ ├── ReactHTML.scala │ │ │ │ ├── ReactNodeArray.scala │ │ │ │ ├── ReactPortal.scala │ │ │ │ ├── ReactPropTypes.scala │ │ │ │ ├── ReactSVG.scala │ │ │ │ ├── ReactSVGElement.scala │ │ │ │ ├── ReducerAction.scala │ │ │ │ ├── ReducerState.scala │ │ │ │ ├── RefAttributes.scala │ │ │ │ ├── RefForwardingComponent.scala │ │ │ │ ├── RefObject.scala │ │ │ │ ├── SVGAttributes.scala │ │ │ │ ├── SVGFactory.scala │ │ │ │ ├── SVGProps.scala │ │ │ │ ├── SchedulerInteraction.scala │ │ │ │ ├── ScriptHTMLAttributes.scala │ │ │ │ ├── SelectHTMLAttributes.scala │ │ │ │ ├── SourceHTMLAttributes.scala │ │ │ │ ├── StaticLifecycle.scala │ │ │ │ ├── StyleHTMLAttributes.scala │ │ │ │ ├── SuspenseProps.scala │ │ │ │ ├── TableHTMLAttributes.scala │ │ │ │ ├── TdHTMLAttributes.scala │ │ │ │ ├── TextareaHTMLAttributes.scala │ │ │ │ ├── ThHTMLAttributes.scala │ │ │ │ ├── TimeHTMLAttributes.scala │ │ │ │ ├── Touch.scala │ │ │ │ ├── TouchEvent.scala │ │ │ │ ├── TouchList.scala │ │ │ │ ├── TrackHTMLAttributes.scala │ │ │ │ ├── TransitionEvent.scala │ │ │ │ ├── UIEvent.scala │ │ │ │ ├── VideoHTMLAttributes.scala │ │ │ │ ├── WeakValidationMap.scala │ │ │ │ ├── WebViewHTMLAttributes.scala │ │ │ │ ├── WheelEvent.scala │ │ │ │ ├── ^.scala │ │ │ │ ├── global.scala │ │ │ │ └── package.scala │ │ │ │ ├── reactBooleans.scala │ │ │ │ ├── reactRequire.scala │ │ │ │ └── reactStrings.scala │ │ └── s │ │ │ ├── semantic-ui-react │ │ │ ├── build.sbt │ │ │ ├── project │ │ │ │ ├── build.properties │ │ │ │ └── plugins.sbt │ │ │ ├── readme.md │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── scala │ │ │ │ └── typingsJapgolly │ │ │ │ └── semanticUiReact │ │ │ │ ├── components │ │ │ │ ├── Accordion.scala │ │ │ │ ├── AccordionAccordion.scala │ │ │ │ ├── AccordionContent.scala │ │ │ │ ├── AccordionPanel.scala │ │ │ │ ├── AccordionTitle.scala │ │ │ │ ├── Button.scala │ │ │ │ ├── ButtonContent.scala │ │ │ │ ├── ButtonGroup.scala │ │ │ │ ├── ButtonOr.scala │ │ │ │ ├── Container.scala │ │ │ │ ├── Input.scala │ │ │ │ ├── SharedBuilder_AccordionAccordionProps134260595.scala │ │ │ │ ├── SharedBuilder_AccordionContentProps1293740607.scala │ │ │ │ ├── SharedBuilder_AccordionTitleProps693949406.scala │ │ │ │ ├── SharedBuilder_ButtonContentProps_1816732723.scala │ │ │ │ ├── SharedBuilder_ButtonGroupProps_1077317311.scala │ │ │ │ ├── SharedBuilder_ButtonOrProps_1866251671.scala │ │ │ │ └── TestContainer.scala │ │ │ │ ├── distCommonjsElementsButtonButtonContentMod.scala │ │ │ │ ├── distCommonjsElementsButtonButtonGroupMod.scala │ │ │ │ ├── distCommonjsElementsButtonButtonMod.scala │ │ │ │ ├── distCommonjsElementsButtonButtonOrMod.scala │ │ │ │ ├── distCommonjsElementsButtonMod.scala │ │ │ │ ├── distCommonjsElementsContainerContainerMod.scala │ │ │ │ ├── distCommonjsElementsContainerMod.scala │ │ │ │ ├── distCommonjsElementsInputInputMod.scala │ │ │ │ ├── distCommonjsElementsInputMod.scala │ │ │ │ ├── distCommonjsElementsTestContainerMod.scala │ │ │ │ ├── distCommonjsElementsTestContainerTestContainerMod.scala │ │ │ │ ├── distCommonjsGenericMod │ │ │ │ ├── HtmlIframeProps.scala │ │ │ │ ├── HtmlImageProps.scala │ │ │ │ ├── HtmlInputrops.scala │ │ │ │ ├── HtmlLabelProps.scala │ │ │ │ ├── HtmlSpanProps.scala │ │ │ │ ├── SemanticCOLORS.scala │ │ │ │ ├── SemanticDIRECTIONALTRANSITIONS.scala │ │ │ │ ├── SemanticFLOATS.scala │ │ │ │ ├── SemanticICONS.scala │ │ │ │ ├── SemanticSIZES.scala │ │ │ │ ├── SemanticSTATICTRANSITIONS.scala │ │ │ │ ├── SemanticTEXTALIGNMENTS.scala │ │ │ │ ├── SemanticTRANSITIONS.scala │ │ │ │ ├── SemanticVERTICALALIGNMENTS.scala │ │ │ │ ├── SemanticWIDTHS.scala │ │ │ │ ├── SemanticWIDTHSNUMBER.scala │ │ │ │ ├── SemanticWIDTHSSTRING.scala │ │ │ │ ├── StrictHtmlIframeProps.scala │ │ │ │ ├── StrictHtmlImageProps.scala │ │ │ │ ├── StrictHtmlInputrops.scala │ │ │ │ ├── StrictHtmlLabelProps.scala │ │ │ │ ├── StrictHtmlSpanProps.scala │ │ │ │ └── package.scala │ │ │ │ ├── distCommonjsModulesAccordionAccordionAccordionMod.scala │ │ │ │ ├── distCommonjsModulesAccordionAccordionContentMod.scala │ │ │ │ ├── distCommonjsModulesAccordionAccordionMod.scala │ │ │ │ ├── distCommonjsModulesAccordionAccordionPanelMod.scala │ │ │ │ ├── distCommonjsModulesAccordionAccordionTitleMod.scala │ │ │ │ ├── distCommonjsModulesAccordionMod.scala │ │ │ │ ├── semanticUiReactInts.scala │ │ │ │ ├── semanticUiReactRequire.scala │ │ │ │ └── semanticUiReactStrings.scala │ │ │ ├── stardust-ui__react-component-event-listener │ │ │ ├── build.sbt │ │ │ ├── project │ │ │ │ ├── build.properties │ │ │ │ └── plugins.sbt │ │ │ ├── readme.md │ │ │ └── src │ │ │ │ └── main │ │ │ │ ├── resources │ │ │ │ └── NPM_DEPENDENCIES │ │ │ │ └── scala │ │ │ │ └── typingsJapgolly │ │ │ │ └── stardustUiReactComponentEventListener │ │ │ │ ├── anon.scala │ │ │ │ ├── components │ │ │ │ └── EventListener.scala │ │ │ │ ├── distEsEventListenerMod.scala │ │ │ │ ├── distEsTypesMod.scala │ │ │ │ ├── distEsUseEventListenerMod.scala │ │ │ │ ├── mod.scala │ │ │ │ ├── stardustUiReactComponentEventListenerRequire.scala │ │ │ │ └── stardustUiReactComponentEventListenerStrings.scala │ │ │ ├── stardust-ui__react-component-ref │ │ │ ├── build.sbt │ │ │ ├── project │ │ │ │ ├── build.properties │ │ │ │ └── plugins.sbt │ │ │ ├── readme.md │ │ │ └── src │ │ │ │ └── main │ │ │ │ ├── resources │ │ │ │ └── NPM_DEPENDENCIES │ │ │ │ └── scala │ │ │ │ └── typingsJapgolly │ │ │ │ └── stardustUiReactComponentRef │ │ │ │ ├── anon.scala │ │ │ │ ├── components │ │ │ │ ├── Ref.scala │ │ │ │ ├── RefFindNode.scala │ │ │ │ ├── RefForward.scala │ │ │ │ └── SharedBuilder_RefProps_2111033441.scala │ │ │ │ ├── distEsHandleRefMod.scala │ │ │ │ ├── distEsIsRefObjectMod.scala │ │ │ │ ├── distEsRefFindNodeMod.scala │ │ │ │ ├── distEsRefForwardMod.scala │ │ │ │ ├── distEsRefMod.scala │ │ │ │ ├── distEsToRefObjectMod.scala │ │ │ │ ├── distEsTypesMod.scala │ │ │ │ ├── mod.scala │ │ │ │ ├── stardustUiReactComponentRefBooleans.scala │ │ │ │ └── stardustUiReactComponentRefRequire.scala │ │ │ └── std │ │ │ ├── build.sbt │ │ │ ├── project │ │ │ ├── build.properties │ │ │ └── plugins.sbt │ │ │ ├── readme.md │ │ │ └── src │ │ │ └── main │ │ │ └── scala │ │ │ └── typingsJapgolly │ │ │ └── std │ │ │ ├── Array.scala │ │ │ ├── DataTransfer.scala │ │ │ ├── Document.scala │ │ │ ├── Element.scala │ │ │ ├── Event.scala │ │ │ ├── EventTarget.scala │ │ │ ├── Function.scala │ │ │ ├── HTMLElementTagNameMap.scala │ │ │ ├── SVGElementTagNameMap.scala │ │ │ ├── StyleMedia.scala │ │ │ ├── package.scala │ │ │ └── stdRequire.scala │ ├── check-japgolly │ │ └── r │ │ │ └── react │ │ │ └── src │ │ │ └── main │ │ │ └── scala │ │ │ └── typingsJapgolly │ │ │ └── react │ │ │ └── global.scala │ ├── check-slinky-3 │ │ ├── c │ │ │ └── componentstest │ │ │ │ ├── build.sbt │ │ │ │ ├── project │ │ │ │ ├── build.properties │ │ │ │ └── plugins.sbt │ │ │ │ ├── readme.md │ │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── scala │ │ │ │ └── typingsSlinky │ │ │ │ └── componentstest │ │ │ │ ├── anon.scala │ │ │ │ ├── components │ │ │ │ ├── Card.scala │ │ │ │ ├── Component.scala │ │ │ │ ├── Grid.scala │ │ │ │ ├── ObjectNames.scala │ │ │ │ ├── SharedBuilder_CardGridProps1601174879.scala │ │ │ │ └── VeryExotic.scala │ │ │ │ ├── componentstestRequire.scala │ │ │ │ └── mod.scala │ │ ├── r │ │ │ ├── react-bootstrap │ │ │ │ ├── build.sbt │ │ │ │ ├── project │ │ │ │ │ ├── build.properties │ │ │ │ │ └── plugins.sbt │ │ │ │ ├── readme.md │ │ │ │ └── src │ │ │ │ │ └── main │ │ │ │ │ ├── resources │ │ │ │ │ └── NPM_DEPENDENCIES │ │ │ │ │ └── scala │ │ │ │ │ └── typingsSlinky │ │ │ │ │ └── reactBootstrap │ │ │ │ │ ├── components │ │ │ │ │ ├── ButtonGroup.scala │ │ │ │ │ └── ToggleButtonGroup.scala │ │ │ │ │ ├── libButtonGroupMod.scala │ │ │ │ │ ├── libMod.scala │ │ │ │ │ ├── libToggleButtonGroupMod.scala │ │ │ │ │ ├── libUtilsBootstrapUtilsMod.scala │ │ │ │ │ ├── libUtilsCreateChainedFunctionMod.scala │ │ │ │ │ ├── libUtilsMod.scala │ │ │ │ │ ├── mod.scala │ │ │ │ │ ├── reactBootstrapRequire.scala │ │ │ │ │ └── reactBootstrapStrings.scala │ │ │ ├── react-contextmenu │ │ │ │ ├── build.sbt │ │ │ │ ├── project │ │ │ │ │ ├── build.properties │ │ │ │ │ └── plugins.sbt │ │ │ │ ├── readme.md │ │ │ │ └── src │ │ │ │ │ └── main │ │ │ │ │ ├── resources │ │ │ │ │ └── NPM_DEPENDENCIES │ │ │ │ │ └── scala │ │ │ │ │ └── typingsSlinky │ │ │ │ │ └── reactContextmenu │ │ │ │ │ ├── components │ │ │ │ │ ├── ContextMenu.scala │ │ │ │ │ ├── ContextMenuTrigger.scala │ │ │ │ │ ├── MenuItem.scala │ │ │ │ │ └── SubMenu.scala │ │ │ │ │ ├── mod.scala │ │ │ │ │ ├── modulesActionsMod.scala │ │ │ │ │ └── reactContextmenuRequire.scala │ │ │ ├── react-dropzone │ │ │ │ ├── build.sbt │ │ │ │ ├── project │ │ │ │ │ ├── build.properties │ │ │ │ │ └── plugins.sbt │ │ │ │ ├── readme.md │ │ │ │ └── src │ │ │ │ │ └── main │ │ │ │ │ ├── resources │ │ │ │ │ └── NPM_DEPENDENCIES │ │ │ │ │ └── scala │ │ │ │ │ └── typingsSlinky │ │ │ │ │ └── reactDropzone │ │ │ │ │ ├── components │ │ │ │ │ └── ReactDropzone.scala │ │ │ │ │ ├── mod.scala │ │ │ │ │ ├── reactDropzoneRequire.scala │ │ │ │ │ └── reactDropzoneStrings.scala │ │ │ ├── react-markdown │ │ │ │ ├── build.sbt │ │ │ │ ├── project │ │ │ │ │ ├── build.properties │ │ │ │ │ └── plugins.sbt │ │ │ │ ├── readme.md │ │ │ │ └── src │ │ │ │ │ └── main │ │ │ │ │ └── scala │ │ │ │ │ └── typingsSlinky │ │ │ │ │ └── reactMarkdown │ │ │ │ │ ├── components │ │ │ │ │ └── ReactMarkdown.scala │ │ │ │ │ ├── mod.scala │ │ │ │ │ └── reactMarkdownRequire.scala │ │ │ ├── react-native │ │ │ │ ├── build.sbt │ │ │ │ ├── project │ │ │ │ │ ├── build.properties │ │ │ │ │ └── plugins.sbt │ │ │ │ ├── readme.md │ │ │ │ └── src │ │ │ │ │ └── main │ │ │ │ │ └── scala │ │ │ │ │ └── typingsSlinky │ │ │ │ │ └── reactNative │ │ │ │ │ ├── ViewToken.scala │ │ │ │ │ ├── ViewabilityConfig.scala │ │ │ │ │ ├── ViewabilityConfigCallbackPair.scala │ │ │ │ │ ├── anon.scala │ │ │ │ │ └── reactNativeRequire.scala │ │ │ ├── react-select │ │ │ │ ├── build.sbt │ │ │ │ ├── project │ │ │ │ │ ├── build.properties │ │ │ │ │ └── plugins.sbt │ │ │ │ ├── readme.md │ │ │ │ └── src │ │ │ │ │ └── main │ │ │ │ │ └── scala │ │ │ │ │ └── typingsSlinky │ │ │ │ │ └── reactSelect │ │ │ │ │ ├── components │ │ │ │ │ └── ReactSelect.scala │ │ │ │ │ ├── mod.scala │ │ │ │ │ └── reactSelectRequire.scala │ │ │ └── react │ │ │ │ ├── build.sbt │ │ │ │ ├── project │ │ │ │ ├── build.properties │ │ │ │ └── plugins.sbt │ │ │ │ ├── readme.md │ │ │ │ └── src │ │ │ │ └── main │ │ │ │ ├── resources │ │ │ │ └── NPM_DEPENDENCIES │ │ │ │ └── scala │ │ │ │ └── typingsSlinky │ │ │ │ ├── StBuildingComponent.scala │ │ │ │ └── react │ │ │ │ ├── anon.scala │ │ │ │ ├── components │ │ │ │ ├── Fragment.scala │ │ │ │ ├── Profiler.scala │ │ │ │ ├── SharedBuilder_DetailedHTMLProps2003142551.scala │ │ │ │ ├── StrictMode.scala │ │ │ │ ├── Suspense.scala │ │ │ │ ├── a.scala │ │ │ │ ├── abbr.scala │ │ │ │ ├── address.scala │ │ │ │ ├── area.scala │ │ │ │ ├── article.scala │ │ │ │ ├── aside.scala │ │ │ │ ├── audio.scala │ │ │ │ ├── b.scala │ │ │ │ ├── base.scala │ │ │ │ ├── bdi.scala │ │ │ │ ├── bdo.scala │ │ │ │ ├── big.scala │ │ │ │ └── view.scala │ │ │ │ ├── global.scala │ │ │ │ ├── mod │ │ │ │ ├── AbstractView.scala │ │ │ │ ├── AllHTMLAttributes.scala │ │ │ │ ├── AnchorHTMLAttributes.scala │ │ │ │ ├── AnimationEvent.scala │ │ │ │ ├── AreaHTMLAttributes.scala │ │ │ │ ├── AriaAttributes.scala │ │ │ │ ├── Attributes.scala │ │ │ │ ├── BaseHTMLAttributes.scala │ │ │ │ ├── BaseSyntheticEvent.scala │ │ │ │ ├── BlockquoteHTMLAttributes.scala │ │ │ │ ├── ButtonHTMLAttributes.scala │ │ │ │ ├── CSSProperties.scala │ │ │ │ ├── CanvasHTMLAttributes.scala │ │ │ │ ├── ChangeEvent.scala │ │ │ │ ├── ChildContextProvider.scala │ │ │ │ ├── ClassAttributes.scala │ │ │ │ ├── ClassicComponent.scala │ │ │ │ ├── ClassicComponentClass.scala │ │ │ │ ├── ClipboardEvent.scala │ │ │ │ ├── ColHTMLAttributes.scala │ │ │ │ ├── ColgroupHTMLAttributes.scala │ │ │ │ ├── Component.scala │ │ │ │ ├── ComponentClass.scala │ │ │ │ ├── ComponentElement.scala │ │ │ │ ├── ComponentFactory.scala │ │ │ │ ├── ComponentLifecycle.scala │ │ │ │ ├── ComponentProps.scala │ │ │ │ ├── ComponentSpec.scala │ │ │ │ ├── CompositionEvent.scala │ │ │ │ ├── ConsumerProps.scala │ │ │ │ ├── Context.scala │ │ │ │ ├── ContextType.scala │ │ │ │ ├── DOMAttributes.scala │ │ │ │ ├── DOMElement.scala │ │ │ │ ├── DOMFactory.scala │ │ │ │ ├── DataHTMLAttributes.scala │ │ │ │ ├── DelHTMLAttributes.scala │ │ │ │ ├── DeprecatedLifecycle.scala │ │ │ │ ├── DetailedHTMLFactory.scala │ │ │ │ ├── DetailedReactHTMLElement.scala │ │ │ │ ├── DetailsHTMLAttributes.scala │ │ │ │ ├── DialogHTMLAttributes.scala │ │ │ │ ├── DragEvent.scala │ │ │ │ ├── EmbedHTMLAttributes.scala │ │ │ │ ├── ErrorInfo.scala │ │ │ │ ├── ExoticComponent.scala │ │ │ │ ├── Factory.scala │ │ │ │ ├── FieldsetHTMLAttributes.scala │ │ │ │ ├── FocusEvent.scala │ │ │ │ ├── FormHTMLAttributes.scala │ │ │ │ ├── ForwardRefExoticComponent.scala │ │ │ │ ├── FunctionComponent.scala │ │ │ │ ├── FunctionComponentElement.scala │ │ │ │ ├── FunctionComponentFactory.scala │ │ │ │ ├── HTMLAttributes.scala │ │ │ │ ├── HTMLProps.scala │ │ │ │ ├── HtmlHTMLAttributes.scala │ │ │ │ ├── IframeHTMLAttributes.scala │ │ │ │ ├── ImgHTMLAttributes.scala │ │ │ │ ├── InputHTMLAttributes.scala │ │ │ │ ├── InsHTMLAttributes.scala │ │ │ │ ├── InvalidEvent.scala │ │ │ │ ├── KeyboardEvent.scala │ │ │ │ ├── KeygenHTMLAttributes.scala │ │ │ │ ├── LabelHTMLAttributes.scala │ │ │ │ ├── LazyExoticComponent.scala │ │ │ │ ├── LiHTMLAttributes.scala │ │ │ │ ├── LinkHTMLAttributes.scala │ │ │ │ ├── MapHTMLAttributes.scala │ │ │ │ ├── MediaHTMLAttributes.scala │ │ │ │ ├── MemoExoticComponent.scala │ │ │ │ ├── MenuHTMLAttributes.scala │ │ │ │ ├── MetaHTMLAttributes.scala │ │ │ │ ├── MeterHTMLAttributes.scala │ │ │ │ ├── Mixin.scala │ │ │ │ ├── MouseEvent.scala │ │ │ │ ├── MutableRefObject.scala │ │ │ │ ├── NamedExoticComponent.scala │ │ │ │ ├── NewLifecycle.scala │ │ │ │ ├── ObjectHTMLAttributes.scala │ │ │ │ ├── OlHTMLAttributes.scala │ │ │ │ ├── OptgroupHTMLAttributes.scala │ │ │ │ ├── OptionHTMLAttributes.scala │ │ │ │ ├── OutputHTMLAttributes.scala │ │ │ │ ├── ParamHTMLAttributes.scala │ │ │ │ ├── PointerEvent.scala │ │ │ │ ├── ProfilerProps.scala │ │ │ │ ├── ProgressHTMLAttributes.scala │ │ │ │ ├── Props.scala │ │ │ │ ├── ProviderExoticComponent.scala │ │ │ │ ├── ProviderProps.scala │ │ │ │ ├── PureComponent.scala │ │ │ │ ├── QuoteHTMLAttributes.scala │ │ │ │ ├── ReactChildren.scala │ │ │ │ ├── ReactDOM.scala │ │ │ │ ├── ReactElement.scala │ │ │ │ ├── ReactHTML.scala │ │ │ │ ├── ReactNodeArray.scala │ │ │ │ ├── ReactPortal.scala │ │ │ │ ├── ReactPropTypes.scala │ │ │ │ ├── ReactSVG.scala │ │ │ │ ├── ReactSVGElement.scala │ │ │ │ ├── ReducerAction.scala │ │ │ │ ├── ReducerState.scala │ │ │ │ ├── RefAttributes.scala │ │ │ │ ├── RefForwardingComponent.scala │ │ │ │ ├── RefObject.scala │ │ │ │ ├── SVGAttributes.scala │ │ │ │ ├── SVGFactory.scala │ │ │ │ ├── SVGProps.scala │ │ │ │ ├── SchedulerInteraction.scala │ │ │ │ ├── ScriptHTMLAttributes.scala │ │ │ │ ├── SelectHTMLAttributes.scala │ │ │ │ ├── SourceHTMLAttributes.scala │ │ │ │ ├── StaticLifecycle.scala │ │ │ │ ├── StyleHTMLAttributes.scala │ │ │ │ ├── SuspenseProps.scala │ │ │ │ ├── TableHTMLAttributes.scala │ │ │ │ ├── TdHTMLAttributes.scala │ │ │ │ ├── TextareaHTMLAttributes.scala │ │ │ │ ├── ThHTMLAttributes.scala │ │ │ │ ├── TimeHTMLAttributes.scala │ │ │ │ ├── Touch.scala │ │ │ │ ├── TouchEvent.scala │ │ │ │ ├── TouchList.scala │ │ │ │ ├── TrackHTMLAttributes.scala │ │ │ │ ├── TransitionEvent.scala │ │ │ │ ├── UIEvent.scala │ │ │ │ ├── VideoHTMLAttributes.scala │ │ │ │ ├── WeakValidationMap.scala │ │ │ │ ├── WebViewHTMLAttributes.scala │ │ │ │ ├── WheelEvent.scala │ │ │ │ ├── ^.scala │ │ │ │ ├── global.scala │ │ │ │ └── package.scala │ │ │ │ ├── reactBooleans.scala │ │ │ │ ├── reactRequire.scala │ │ │ │ └── reactStrings.scala │ │ └── s │ │ │ ├── semantic-ui-react │ │ │ ├── build.sbt │ │ │ ├── project │ │ │ │ ├── build.properties │ │ │ │ └── plugins.sbt │ │ │ ├── readme.md │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── scala │ │ │ │ └── typingsSlinky │ │ │ │ └── semanticUiReact │ │ │ │ ├── components │ │ │ │ ├── Accordion.scala │ │ │ │ ├── AccordionAccordion.scala │ │ │ │ ├── AccordionContent.scala │ │ │ │ ├── AccordionPanel.scala │ │ │ │ ├── AccordionTitle.scala │ │ │ │ ├── Button.scala │ │ │ │ ├── ButtonContent.scala │ │ │ │ ├── ButtonGroup.scala │ │ │ │ ├── ButtonOr.scala │ │ │ │ ├── Container.scala │ │ │ │ ├── Input.scala │ │ │ │ ├── SharedBuilder_AccordionAccordionProps_2001699741.scala │ │ │ │ ├── SharedBuilder_AccordionContentProps_192314867.scala │ │ │ │ ├── SharedBuilder_AccordionTitleProps_783090146.scala │ │ │ │ ├── SharedBuilder_ButtonContentProps2140108940.scala │ │ │ │ ├── SharedBuilder_ButtonGroupProps_138423406.scala │ │ │ │ ├── SharedBuilder_ButtonOrProps1435030884.scala │ │ │ │ └── TestContainer.scala │ │ │ │ ├── distCommonjsElementsButtonButtonContentMod.scala │ │ │ │ ├── distCommonjsElementsButtonButtonGroupMod.scala │ │ │ │ ├── distCommonjsElementsButtonButtonMod.scala │ │ │ │ ├── distCommonjsElementsButtonButtonOrMod.scala │ │ │ │ ├── distCommonjsElementsButtonMod.scala │ │ │ │ ├── distCommonjsElementsContainerContainerMod.scala │ │ │ │ ├── distCommonjsElementsContainerMod.scala │ │ │ │ ├── distCommonjsElementsInputInputMod.scala │ │ │ │ ├── distCommonjsElementsInputMod.scala │ │ │ │ ├── distCommonjsElementsTestContainerMod.scala │ │ │ │ ├── distCommonjsElementsTestContainerTestContainerMod.scala │ │ │ │ ├── distCommonjsGenericMod │ │ │ │ ├── HtmlIframeProps.scala │ │ │ │ ├── HtmlImageProps.scala │ │ │ │ ├── HtmlInputrops.scala │ │ │ │ ├── HtmlLabelProps.scala │ │ │ │ ├── HtmlSpanProps.scala │ │ │ │ ├── SemanticCOLORS.scala │ │ │ │ ├── SemanticDIRECTIONALTRANSITIONS.scala │ │ │ │ ├── SemanticFLOATS.scala │ │ │ │ ├── SemanticICONS.scala │ │ │ │ ├── SemanticSIZES.scala │ │ │ │ ├── SemanticSTATICTRANSITIONS.scala │ │ │ │ ├── SemanticTEXTALIGNMENTS.scala │ │ │ │ ├── SemanticTRANSITIONS.scala │ │ │ │ ├── SemanticVERTICALALIGNMENTS.scala │ │ │ │ ├── SemanticWIDTHS.scala │ │ │ │ ├── SemanticWIDTHSNUMBER.scala │ │ │ │ ├── SemanticWIDTHSSTRING.scala │ │ │ │ ├── StrictHtmlIframeProps.scala │ │ │ │ ├── StrictHtmlImageProps.scala │ │ │ │ ├── StrictHtmlInputrops.scala │ │ │ │ ├── StrictHtmlLabelProps.scala │ │ │ │ ├── StrictHtmlSpanProps.scala │ │ │ │ └── package.scala │ │ │ │ ├── distCommonjsModulesAccordionAccordionAccordionMod.scala │ │ │ │ ├── distCommonjsModulesAccordionAccordionContentMod.scala │ │ │ │ ├── distCommonjsModulesAccordionAccordionMod.scala │ │ │ │ ├── distCommonjsModulesAccordionAccordionPanelMod.scala │ │ │ │ ├── distCommonjsModulesAccordionAccordionTitleMod.scala │ │ │ │ ├── distCommonjsModulesAccordionMod.scala │ │ │ │ ├── semanticUiReactInts.scala │ │ │ │ ├── semanticUiReactRequire.scala │ │ │ │ └── semanticUiReactStrings.scala │ │ │ ├── stardust-ui__react-component-event-listener │ │ │ ├── build.sbt │ │ │ ├── project │ │ │ │ ├── build.properties │ │ │ │ └── plugins.sbt │ │ │ ├── readme.md │ │ │ └── src │ │ │ │ └── main │ │ │ │ ├── resources │ │ │ │ └── NPM_DEPENDENCIES │ │ │ │ └── scala │ │ │ │ └── typingsSlinky │ │ │ │ └── stardustUiReactComponentEventListener │ │ │ │ ├── anon.scala │ │ │ │ ├── components │ │ │ │ └── EventListener.scala │ │ │ │ ├── distEsEventListenerMod.scala │ │ │ │ ├── distEsTypesMod.scala │ │ │ │ ├── distEsUseEventListenerMod.scala │ │ │ │ ├── mod.scala │ │ │ │ ├── stardustUiReactComponentEventListenerRequire.scala │ │ │ │ └── stardustUiReactComponentEventListenerStrings.scala │ │ │ ├── stardust-ui__react-component-ref │ │ │ ├── build.sbt │ │ │ ├── project │ │ │ │ ├── build.properties │ │ │ │ └── plugins.sbt │ │ │ ├── readme.md │ │ │ └── src │ │ │ │ └── main │ │ │ │ ├── resources │ │ │ │ └── NPM_DEPENDENCIES │ │ │ │ └── scala │ │ │ │ └── typingsSlinky │ │ │ │ └── stardustUiReactComponentRef │ │ │ │ ├── anon.scala │ │ │ │ ├── components │ │ │ │ ├── Ref.scala │ │ │ │ ├── RefFindNode.scala │ │ │ │ ├── RefForward.scala │ │ │ │ └── SharedBuilder_RefProps_2124552728.scala │ │ │ │ ├── distEsHandleRefMod.scala │ │ │ │ ├── distEsIsRefObjectMod.scala │ │ │ │ ├── distEsRefFindNodeMod.scala │ │ │ │ ├── distEsRefForwardMod.scala │ │ │ │ ├── distEsRefMod.scala │ │ │ │ ├── distEsToRefObjectMod.scala │ │ │ │ ├── distEsTypesMod.scala │ │ │ │ ├── mod.scala │ │ │ │ ├── stardustUiReactComponentRefBooleans.scala │ │ │ │ └── stardustUiReactComponentRefRequire.scala │ │ │ └── std │ │ │ ├── build.sbt │ │ │ ├── project │ │ │ ├── build.properties │ │ │ └── plugins.sbt │ │ │ ├── readme.md │ │ │ └── src │ │ │ └── main │ │ │ └── scala │ │ │ └── typingsSlinky │ │ │ └── std │ │ │ ├── Array.scala │ │ │ ├── DataTransfer.scala │ │ │ ├── Document.scala │ │ │ ├── Element.scala │ │ │ ├── Event.scala │ │ │ ├── EventTarget.scala │ │ │ ├── Function.scala │ │ │ ├── HTMLElementTagNameMap.scala │ │ │ ├── SVGElementTagNameMap.scala │ │ │ ├── StyleMedia.scala │ │ │ ├── package.scala │ │ │ └── stdRequire.scala │ ├── check-slinky │ │ └── r │ │ │ └── react │ │ │ └── src │ │ │ └── main │ │ │ └── scala │ │ │ └── typingsSlinky │ │ │ └── react │ │ │ └── global.scala │ └── in │ │ ├── @stardust-ui │ │ ├── react-component-event-listener │ │ │ ├── dist │ │ │ │ └── es │ │ │ │ │ ├── EventListener.d.ts │ │ │ │ │ ├── index.d.ts │ │ │ │ │ ├── types.d.ts │ │ │ │ │ └── useEventListener.d.ts │ │ │ └── package.json │ │ └── react-component-ref │ │ │ ├── dist │ │ │ └── es │ │ │ │ ├── Ref.d.ts │ │ │ │ ├── RefFindNode.d.ts │ │ │ │ ├── RefForward.d.ts │ │ │ │ ├── handleRef.d.ts │ │ │ │ ├── index.d.ts │ │ │ │ ├── isRefObject.d.ts │ │ │ │ ├── toRefObject.d.ts │ │ │ │ └── types.d.ts │ │ │ └── package.json │ │ ├── componentstest │ │ └── index.d.ts │ │ ├── react-bootstrap │ │ ├── index.d.ts │ │ ├── lib │ │ │ ├── ButtonGroup.d.ts │ │ │ ├── ToggleButtonGroup.d.ts │ │ │ ├── index.d.ts │ │ │ └── utils │ │ │ │ ├── bootstrapUtils.d.ts │ │ │ │ ├── createChainedFunction.d.ts │ │ │ │ └── index.d.ts │ │ └── tsconfig.json │ │ ├── react-contextmenu │ │ ├── package.json │ │ └── src │ │ │ └── index.d.ts │ │ ├── react-dropzone │ │ ├── package.json │ │ └── typings │ │ │ └── react-dropzone.d.ts │ │ ├── react-markdown │ │ └── index.d.ts │ │ ├── react-native │ │ └── index.d.ts │ │ ├── react-select │ │ └── index.d.ts │ │ ├── react │ │ ├── global.d.ts │ │ ├── index.d.ts │ │ └── package.json │ │ ├── semantic-ui-react │ │ └── dist │ │ │ └── commonjs │ │ │ ├── elements │ │ │ ├── Button │ │ │ │ ├── Button.d.ts │ │ │ │ ├── ButtonContent.d.ts │ │ │ │ ├── ButtonGroup.d.ts │ │ │ │ ├── ButtonOr.d.ts │ │ │ │ └── index.d.ts │ │ │ ├── Container │ │ │ │ ├── Container.d.ts │ │ │ │ └── index.d.ts │ │ │ ├── Input │ │ │ │ ├── Input.d.ts │ │ │ │ └── index.d.ts │ │ │ └── TestContainer │ │ │ │ ├── TestContainer.d.ts │ │ │ │ └── index.d.ts │ │ │ ├── generic.d.ts │ │ │ └── modules │ │ │ └── Accordion │ │ │ ├── Accordion.d.ts │ │ │ ├── AccordionAccordion.d.ts │ │ │ ├── AccordionContent.d.ts │ │ │ ├── AccordionPanel.d.ts │ │ │ ├── AccordionTitle.d.ts │ │ │ └── index.d.ts │ │ └── stdlib.d.ts ├── react-transition-group │ ├── check-japgolly-3 │ │ ├── r │ │ │ ├── react-transition-group │ │ │ │ ├── build.sbt │ │ │ │ ├── project │ │ │ │ │ ├── build.properties │ │ │ │ │ └── plugins.sbt │ │ │ │ ├── readme.md │ │ │ │ └── src │ │ │ │ │ └── main │ │ │ │ │ ├── resources │ │ │ │ │ └── NPM_DEPENDENCIES │ │ │ │ │ └── scala │ │ │ │ │ └── typingsJapgolly │ │ │ │ │ └── reactTransitionGroup │ │ │ │ │ ├── anon.scala │ │ │ │ │ ├── components │ │ │ │ │ └── TransitionGroup.scala │ │ │ │ │ ├── mod.scala │ │ │ │ │ ├── reactTransitionGroupRequire.scala │ │ │ │ │ ├── reactTransitionGroupStrings.scala │ │ │ │ │ └── transitionGroupMod.scala │ │ │ └── react │ │ │ │ ├── build.sbt │ │ │ │ ├── project │ │ │ │ ├── build.properties │ │ │ │ └── plugins.sbt │ │ │ │ ├── readme.md │ │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── scala │ │ │ │ └── typingsJapgolly │ │ │ │ ├── StBuildingComponent.scala │ │ │ │ └── react │ │ │ │ ├── anon.scala │ │ │ │ ├── components │ │ │ │ ├── abbr.scala │ │ │ │ └── animate.scala │ │ │ │ ├── mod.scala │ │ │ │ └── reactRequire.scala │ │ └── s │ │ │ └── std │ │ │ ├── build.sbt │ │ │ ├── project │ │ │ ├── build.properties │ │ │ └── plugins.sbt │ │ │ ├── readme.md │ │ │ └── src │ │ │ └── main │ │ │ └── scala │ │ │ └── typingsJapgolly │ │ │ └── std │ │ │ ├── Array.scala │ │ │ ├── Element.scala │ │ │ ├── Event.scala │ │ │ ├── EventTarget.scala │ │ │ ├── HTMLElementTagNameMap.scala │ │ │ ├── SVGElementTagNameMap.scala │ │ │ ├── package.scala │ │ │ └── stdRequire.scala │ ├── check-slinky-3 │ │ ├── r │ │ │ ├── react-transition-group │ │ │ │ ├── build.sbt │ │ │ │ ├── project │ │ │ │ │ ├── build.properties │ │ │ │ │ └── plugins.sbt │ │ │ │ ├── readme.md │ │ │ │ └── src │ │ │ │ │ └── main │ │ │ │ │ ├── resources │ │ │ │ │ └── NPM_DEPENDENCIES │ │ │ │ │ └── scala │ │ │ │ │ └── typingsSlinky │ │ │ │ │ └── reactTransitionGroup │ │ │ │ │ ├── anon.scala │ │ │ │ │ ├── components │ │ │ │ │ └── TransitionGroup.scala │ │ │ │ │ ├── mod.scala │ │ │ │ │ ├── reactTransitionGroupRequire.scala │ │ │ │ │ ├── reactTransitionGroupStrings.scala │ │ │ │ │ └── transitionGroupMod.scala │ │ │ └── react │ │ │ │ ├── build.sbt │ │ │ │ ├── project │ │ │ │ ├── build.properties │ │ │ │ └── plugins.sbt │ │ │ │ ├── readme.md │ │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── scala │ │ │ │ └── typingsSlinky │ │ │ │ ├── StBuildingComponent.scala │ │ │ │ └── react │ │ │ │ ├── anon.scala │ │ │ │ ├── components │ │ │ │ ├── abbr.scala │ │ │ │ └── animate.scala │ │ │ │ ├── mod.scala │ │ │ │ └── reactRequire.scala │ │ └── s │ │ │ └── std │ │ │ ├── build.sbt │ │ │ ├── project │ │ │ ├── build.properties │ │ │ └── plugins.sbt │ │ │ ├── readme.md │ │ │ └── src │ │ │ └── main │ │ │ └── scala │ │ │ └── typingsSlinky │ │ │ └── std │ │ │ ├── Array.scala │ │ │ ├── Element.scala │ │ │ ├── Event.scala │ │ │ ├── EventTarget.scala │ │ │ ├── HTMLElementTagNameMap.scala │ │ │ ├── SVGElementTagNameMap.scala │ │ │ ├── package.scala │ │ │ └── stdRequire.scala │ └── in │ │ ├── react-transition-group │ │ ├── TransitionGroup.d.ts │ │ ├── index.d.ts │ │ ├── tsconfig.json │ │ └── tslint.json │ │ ├── react │ │ ├── index.d.ts │ │ ├── tsconfig.json │ │ └── tslint.json │ │ └── stdlib.d.ts ├── recharts │ ├── check-3 │ │ └── r │ │ │ └── recharts │ │ │ ├── build.sbt │ │ │ ├── project │ │ │ ├── build.properties │ │ │ └── plugins.sbt │ │ │ ├── readme.md │ │ │ └── src │ │ │ └── main │ │ │ └── scala │ │ │ └── typings │ │ │ └── recharts │ │ │ ├── anon.scala │ │ │ ├── mod.scala │ │ │ └── rechartsRequire.scala │ ├── check │ │ └── r │ │ │ └── recharts │ │ │ ├── build.sbt │ │ │ ├── project │ │ │ ├── build.properties │ │ │ └── plugins.sbt │ │ │ ├── readme.md │ │ │ └── src │ │ │ └── main │ │ │ └── scala │ │ │ └── typings │ │ │ └── recharts │ │ │ ├── anon.scala │ │ │ ├── mod.scala │ │ │ └── rechartsRequire.scala │ └── in │ │ ├── recharts │ │ └── index.d.ts │ │ └── stdlib.d.ts ├── rxjs │ ├── check-3 │ │ └── r │ │ │ └── rxjs │ │ │ ├── build.sbt │ │ │ ├── project │ │ │ ├── build.properties │ │ │ └── plugins.sbt │ │ │ ├── readme.md │ │ │ └── src │ │ │ └── main │ │ │ └── scala │ │ │ └── typings │ │ │ └── rxjs │ │ │ ├── internalObservableMod.scala │ │ │ ├── internalSubscriptionMod.scala │ │ │ ├── internalTypesMod.scala │ │ │ ├── mod.scala │ │ │ └── rxjsRequire.scala │ └── in │ │ ├── rxjs │ │ ├── index.d.ts │ │ └── internal │ │ │ ├── Observable.d.ts │ │ │ ├── Subscription.d.ts │ │ │ └── types.d.ts │ │ └── stdlib.d.ts ├── sax │ ├── check-3 │ │ ├── n │ │ │ └── node │ │ │ │ ├── build.sbt │ │ │ │ ├── project │ │ │ │ ├── build.properties │ │ │ │ └── plugins.sbt │ │ │ │ ├── readme.md │ │ │ │ └── src │ │ │ │ └── main │ │ │ │ ├── resources │ │ │ │ └── NPM_DEPENDENCIES │ │ │ │ └── scala │ │ │ │ └── typings │ │ │ │ └── node │ │ │ │ ├── Error.scala │ │ │ │ ├── NodeBuffer.scala │ │ │ │ ├── NodeJS.scala │ │ │ │ ├── anon.scala │ │ │ │ ├── bufferMod.scala │ │ │ │ ├── eventsMod.scala │ │ │ │ ├── global.scala │ │ │ │ ├── nodeRequire.scala │ │ │ │ ├── nodeStrings.scala │ │ │ │ ├── package.scala │ │ │ │ └── streamMod.scala │ │ └── s │ │ │ ├── sax │ │ │ ├── build.sbt │ │ │ ├── project │ │ │ │ ├── build.properties │ │ │ │ └── plugins.sbt │ │ │ ├── readme.md │ │ │ └── src │ │ │ │ └── main │ │ │ │ ├── resources │ │ │ │ └── NPM_DEPENDENCIES │ │ │ │ └── scala │ │ │ │ └── typings │ │ │ │ └── sax │ │ │ │ ├── mod.scala │ │ │ │ └── saxRequire.scala │ │ │ └── std │ │ │ ├── build.sbt │ │ │ ├── project │ │ │ ├── build.properties │ │ │ └── plugins.sbt │ │ │ ├── readme.md │ │ │ └── src │ │ │ └── main │ │ │ └── scala │ │ │ └── typings │ │ │ └── std │ │ │ ├── Array.scala │ │ │ ├── ArrayBuffer.scala │ │ │ ├── ArrayConstrucor.scala │ │ │ ├── Function.scala │ │ │ ├── Uint8Array.scala │ │ │ ├── global.scala │ │ │ └── stdRequire.scala │ └── in │ │ ├── node │ │ ├── index.d.ts │ │ ├── tsconfig.json │ │ └── tslint.json │ │ ├── sax │ │ ├── index.d.ts │ │ ├── tsconfig.json │ │ └── tslint.json │ │ └── stdlib.d.ts ├── serve-static │ ├── check-3 │ │ ├── e │ │ │ └── express-serve-static-core │ │ │ │ ├── build.sbt │ │ │ │ ├── project │ │ │ │ ├── build.properties │ │ │ │ └── plugins.sbt │ │ │ │ ├── readme.md │ │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── scala │ │ │ │ └── typings │ │ │ │ └── expressServeStaticCore │ │ │ │ ├── expressServeStaticCoreRequire.scala │ │ │ │ └── mod.scala │ │ ├── m │ │ │ └── mime │ │ │ │ ├── build.sbt │ │ │ │ ├── project │ │ │ │ ├── build.properties │ │ │ │ └── plugins.sbt │ │ │ │ ├── readme.md │ │ │ │ └── src │ │ │ │ └── main │ │ │ │ ├── resources │ │ │ │ └── NPM_DEPENDENCIES │ │ │ │ └── scala │ │ │ │ └── typings │ │ │ │ └── mime │ │ │ │ ├── global.scala │ │ │ │ ├── mimeMod.scala │ │ │ │ ├── mimeRequire.scala │ │ │ │ └── mod.scala │ │ └── s │ │ │ ├── serve-static │ │ │ ├── build.sbt │ │ │ ├── project │ │ │ │ ├── build.properties │ │ │ │ └── plugins.sbt │ │ │ ├── readme.md │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── scala │ │ │ │ └── typings │ │ │ │ └── serveStatic │ │ │ │ ├── mod.scala │ │ │ │ └── serveStaticRequire.scala │ │ │ └── std │ │ │ ├── build.sbt │ │ │ ├── project │ │ │ ├── build.properties │ │ │ └── plugins.sbt │ │ │ ├── readme.md │ │ │ └── src │ │ │ └── main │ │ │ └── scala │ │ │ └── typings │ │ │ └── std │ │ │ ├── Array.scala │ │ │ └── stdRequire.scala │ ├── check │ │ └── m │ │ │ └── mime │ │ │ └── src │ │ │ └── main │ │ │ └── scala │ │ │ └── typings │ │ │ └── mime │ │ │ └── global.scala │ └── in │ │ ├── express-serve-static-core │ │ ├── index.d.ts │ │ ├── tsconfig.json │ │ └── tslint.json │ │ ├── mime │ │ ├── Mime.d.ts │ │ ├── index.d.ts │ │ ├── tsconfig.json │ │ └── tslint.json │ │ ├── serve-static │ │ ├── index.d.ts │ │ ├── tsconfig.json │ │ └── tslint.json │ │ └── stdlib.d.ts ├── stylis │ ├── check-3 │ │ └── s │ │ │ ├── std │ │ │ ├── build.sbt │ │ │ ├── project │ │ │ │ ├── build.properties │ │ │ │ └── plugins.sbt │ │ │ ├── readme.md │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── scala │ │ │ │ └── typings │ │ │ │ └── std │ │ │ │ ├── Array.scala │ │ │ │ └── stdRequire.scala │ │ │ └── stylis │ │ │ ├── build.sbt │ │ │ ├── project │ │ │ ├── build.properties │ │ │ └── plugins.sbt │ │ │ ├── readme.md │ │ │ └── src │ │ │ └── main │ │ │ └── scala │ │ │ └── typings │ │ │ └── stylis │ │ │ ├── stylisMod.scala │ │ │ └── stylisRequire.scala │ └── in │ │ ├── stdlib.d.ts │ │ └── stylis │ │ ├── stylis.d.ts │ │ └── test.ts ├── swiz │ ├── check-3 │ │ └── s │ │ │ ├── std │ │ │ ├── build.sbt │ │ │ ├── project │ │ │ │ ├── build.properties │ │ │ │ └── plugins.sbt │ │ │ ├── readme.md │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── scala │ │ │ │ └── typings │ │ │ │ └── std │ │ │ │ ├── Array.scala │ │ │ │ └── stdRequire.scala │ │ │ └── swiz │ │ │ ├── build.sbt │ │ │ ├── project │ │ │ ├── build.properties │ │ │ └── plugins.sbt │ │ │ ├── readme.md │ │ │ └── src │ │ │ └── main │ │ │ └── scala │ │ │ └── typings │ │ │ └── swiz │ │ │ ├── mod.scala │ │ │ ├── swizRequire.scala │ │ │ ├── swizTestDefaultMod.scala │ │ │ └── swizTestFooMod.scala │ └── in │ │ ├── stdlib.d.ts │ │ └── swiz │ │ ├── index.d.ts │ │ └── tsconfig.json ├── tstl │ ├── check-3 │ │ └── t │ │ │ └── tstl │ │ │ ├── build.sbt │ │ │ ├── project │ │ │ ├── build.properties │ │ │ └── plugins.sbt │ │ │ ├── readme.md │ │ │ └── src │ │ │ └── main │ │ │ └── scala │ │ │ └── typings │ │ │ └── tstl │ │ │ ├── global.scala │ │ │ ├── std.scala │ │ │ └── tstlRequire.scala │ └── in │ │ ├── stdlib.d.ts │ │ └── tstl │ │ └── index.d.ts ├── type-mappings │ ├── check-3 │ │ ├── s │ │ │ └── std │ │ │ │ ├── build.sbt │ │ │ │ ├── project │ │ │ │ ├── build.properties │ │ │ │ └── plugins.sbt │ │ │ │ ├── readme.md │ │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── scala │ │ │ │ └── typings │ │ │ │ └── std │ │ │ │ ├── InstanceType.scala │ │ │ │ ├── Proxify.scala │ │ │ │ ├── ReturnType.scala │ │ │ │ ├── package.scala │ │ │ │ └── stdRequire.scala │ │ └── t │ │ │ └── type-mappings │ │ │ ├── build.sbt │ │ │ ├── project │ │ │ ├── build.properties │ │ │ └── plugins.sbt │ │ │ ├── readme.md │ │ │ └── src │ │ │ └── main │ │ │ └── scala │ │ │ └── typings │ │ │ └── typeMappings │ │ │ ├── CSSProperties.scala │ │ │ ├── Excluded.scala │ │ │ ├── IProxiedPerson.scala │ │ │ ├── Mark.scala │ │ │ ├── Marking.scala │ │ │ ├── NamePerson.scala │ │ │ ├── PartialPerson.scala │ │ │ ├── Person.scala │ │ │ ├── PersonRecord.scala │ │ │ ├── ProxiedPerson.scala │ │ │ ├── Proxify.scala │ │ │ ├── ReadonlyPerson.scala │ │ │ ├── RequiredPerson.scala │ │ │ ├── TextMark.scala │ │ │ ├── TrailMark.scala │ │ │ ├── TypographyStyle.scala │ │ │ ├── TypographyStyleOptions.scala │ │ │ ├── U.scala │ │ │ ├── V.scala │ │ │ ├── anon.scala │ │ │ ├── global.scala │ │ │ ├── package.scala │ │ │ ├── typeMappingsRequire.scala │ │ │ └── typeMappingsStrings.scala │ └── in │ │ ├── stdlib.d.ts │ │ └── type-mappings │ │ └── index.d.ts ├── typings-json │ ├── check-3 │ │ ├── p │ │ │ └── phaser │ │ │ │ ├── build.sbt │ │ │ │ ├── project │ │ │ │ ├── build.properties │ │ │ │ └── plugins.sbt │ │ │ │ ├── readme.md │ │ │ │ └── src │ │ │ │ └── main │ │ │ │ ├── resources │ │ │ │ └── NPM_DEPENDENCIES │ │ │ │ └── scala │ │ │ │ └── typings │ │ │ │ └── phaser │ │ │ │ ├── PIXI.scala │ │ │ │ ├── Phaser.scala │ │ │ │ ├── anon.scala │ │ │ │ ├── global.scala │ │ │ │ ├── mod.scala │ │ │ │ ├── p2.scala │ │ │ │ └── phaserRequire.scala │ │ └── s │ │ │ └── std │ │ │ ├── build.sbt │ │ │ ├── project │ │ │ ├── build.properties │ │ │ └── plugins.sbt │ │ │ ├── readme.md │ │ │ └── src │ │ │ └── main │ │ │ └── scala │ │ │ └── typings │ │ │ └── std │ │ │ ├── Array.scala │ │ │ └── stdRequire.scala │ └── in │ │ ├── phaser │ │ ├── package.json │ │ └── typescript │ │ │ ├── p2.d.ts │ │ │ ├── phaser.comments.d.ts │ │ │ ├── pixi.comments.d.ts │ │ │ └── typings.json │ │ └── stdlib.d.ts ├── union-to-inheritance │ ├── check-3 │ │ ├── s │ │ │ └── std │ │ │ │ ├── build.sbt │ │ │ │ ├── project │ │ │ │ ├── build.properties │ │ │ │ └── plugins.sbt │ │ │ │ ├── readme.md │ │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── scala │ │ │ │ └── typings │ │ │ │ └── std │ │ │ │ ├── Array.scala │ │ │ │ ├── HTMLInputElement.scala │ │ │ │ ├── TwoFoo.scala │ │ │ │ └── stdRequire.scala │ │ └── u │ │ │ └── union-to-inheritance │ │ │ ├── build.sbt │ │ │ ├── project │ │ │ ├── build.properties │ │ │ └── plugins.sbt │ │ │ ├── readme.md │ │ │ └── src │ │ │ └── main │ │ │ └── scala │ │ │ └── typings │ │ │ └── unionToInheritance │ │ │ ├── Either.scala │ │ │ ├── Foo.scala │ │ │ ├── Foo2.scala │ │ │ ├── Legal1.scala │ │ │ ├── Legal2.scala │ │ │ ├── Legal3.scala │ │ │ ├── _A.scala │ │ │ ├── _B.scala │ │ │ ├── _C.scala │ │ │ ├── _Illegal1.scala │ │ │ ├── _Illegal2.scala │ │ │ ├── _Illegal3.scala │ │ │ ├── _Test.scala │ │ │ ├── _Test2.scala │ │ │ ├── package.scala │ │ │ ├── unionToInheritanceInts.scala │ │ │ ├── unionToInheritanceRequire.scala │ │ │ └── unionToInheritanceStrings.scala │ └── in │ │ ├── stdlib.d.ts │ │ └── union-to-inheritance │ │ └── index.d.ts ├── union-type-alias-to-interfaces │ └── in │ │ ├── stdlib.d.ts │ │ └── union-type-alias-to-interfaces │ │ └── index.d.ts ├── vfile │ ├── check-3 │ │ ├── s │ │ │ └── std │ │ │ │ ├── build.sbt │ │ │ │ ├── project │ │ │ │ ├── build.properties │ │ │ │ └── plugins.sbt │ │ │ │ ├── readme.md │ │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── scala │ │ │ │ └── typings │ │ │ │ └── std │ │ │ │ ├── Uint8Array.scala │ │ │ │ └── stdRequire.scala │ │ └── v │ │ │ └── vfile │ │ │ ├── build.sbt │ │ │ ├── project │ │ │ ├── build.properties │ │ │ └── plugins.sbt │ │ │ ├── readme.md │ │ │ └── src │ │ │ └── main │ │ │ └── scala │ │ │ └── typings │ │ │ └── vfile │ │ │ ├── VFile.scala │ │ │ ├── VFileOptions.scala │ │ │ ├── package.scala │ │ │ └── vfileRequire.scala │ └── in │ │ ├── stdlib.d.ts │ │ └── vfile │ │ └── index.d.ts ├── virtual-dom │ ├── check-3 │ │ └── v │ │ │ └── virtual-dom │ │ │ ├── build.sbt │ │ │ ├── project │ │ │ ├── build.properties │ │ │ └── plugins.sbt │ │ │ ├── readme.md │ │ │ └── src │ │ │ └── main │ │ │ └── scala │ │ │ └── typings │ │ │ └── virtualDom │ │ │ ├── global.scala │ │ │ ├── hMod.scala │ │ │ └── virtualDomRequire.scala │ └── in │ │ ├── stdlib.d.ts │ │ └── virtual-dom │ │ ├── index.d.ts │ │ ├── tsconfig.json │ │ ├── tslint.json │ │ └── virtual-dom-tests.ts ├── void-elements │ ├── check-3 │ │ ├── s │ │ │ └── std │ │ │ │ ├── build.sbt │ │ │ │ ├── project │ │ │ │ ├── build.properties │ │ │ │ └── plugins.sbt │ │ │ │ ├── readme.md │ │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── scala │ │ │ │ └── typings │ │ │ │ └── std │ │ │ │ ├── Array.scala │ │ │ │ ├── package.scala │ │ │ │ └── stdRequire.scala │ │ └── v │ │ │ └── void-elements │ │ │ ├── build.sbt │ │ │ ├── project │ │ │ ├── build.properties │ │ │ └── plugins.sbt │ │ │ ├── readme.md │ │ │ └── src │ │ │ └── main │ │ │ ├── resources │ │ │ └── NPM_DEPENDENCIES │ │ │ └── scala │ │ │ └── typings │ │ │ └── voidElements │ │ │ ├── mod.scala │ │ │ ├── voidElementsBooleans.scala │ │ │ └── voidElementsRequire.scala │ └── in │ │ ├── stdlib.d.ts │ │ └── void-elements │ │ ├── index.d.ts │ │ └── tsconfig.json ├── vue │ ├── check-3 │ │ ├── n │ │ │ └── node │ │ │ │ ├── build.sbt │ │ │ │ ├── project │ │ │ │ ├── build.properties │ │ │ │ └── plugins.sbt │ │ │ │ ├── readme.md │ │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── scala │ │ │ │ └── typings │ │ │ │ └── node │ │ │ │ ├── NodeJS.scala │ │ │ │ └── nodeRequire.scala │ │ ├── s │ │ │ ├── std │ │ │ │ ├── build.sbt │ │ │ │ ├── project │ │ │ │ │ ├── build.properties │ │ │ │ │ └── plugins.sbt │ │ │ │ ├── readme.md │ │ │ │ └── src │ │ │ │ │ └── main │ │ │ │ │ └── scala │ │ │ │ │ └── typings │ │ │ │ │ └── std │ │ │ │ │ ├── Array.scala │ │ │ │ │ ├── Blob.scala │ │ │ │ │ ├── Error.scala │ │ │ │ │ ├── Function.scala │ │ │ │ │ ├── Node.scala │ │ │ │ │ ├── Object.scala │ │ │ │ │ ├── Promise.scala │ │ │ │ │ ├── PromiseLike.scala │ │ │ │ │ ├── RegExp.scala │ │ │ │ │ ├── ThisType.scala │ │ │ │ │ ├── global.scala │ │ │ │ │ ├── package.scala │ │ │ │ │ └── stdRequire.scala │ │ │ └── storybook__vue │ │ │ │ ├── build.sbt │ │ │ │ ├── project │ │ │ │ ├── build.properties │ │ │ │ └── plugins.sbt │ │ │ │ ├── readme.md │ │ │ │ └── src │ │ │ │ └── main │ │ │ │ ├── resources │ │ │ │ └── NPM_DEPENDENCIES │ │ │ │ └── scala │ │ │ │ └── typings │ │ │ │ └── storybookVue │ │ │ │ ├── anon.scala │ │ │ │ ├── mod.scala │ │ │ │ └── storybookVueRequire.scala │ │ ├── v │ │ │ ├── vue-resource │ │ │ │ ├── build.sbt │ │ │ │ ├── project │ │ │ │ │ ├── build.properties │ │ │ │ │ └── plugins.sbt │ │ │ │ ├── readme.md │ │ │ │ └── src │ │ │ │ │ └── main │ │ │ │ │ ├── resources │ │ │ │ │ └── NPM_DEPENDENCIES │ │ │ │ │ └── scala │ │ │ │ │ └── typings │ │ │ │ │ └── vueResource │ │ │ │ │ ├── anon.scala │ │ │ │ │ ├── mod.scala │ │ │ │ │ ├── vueResourceRequire.scala │ │ │ │ │ └── vuejs.scala │ │ │ ├── vue-scrollto │ │ │ │ ├── build.sbt │ │ │ │ ├── project │ │ │ │ │ ├── build.properties │ │ │ │ │ └── plugins.sbt │ │ │ │ ├── readme.md │ │ │ │ └── src │ │ │ │ │ └── main │ │ │ │ │ ├── resources │ │ │ │ │ └── NPM_DEPENDENCIES │ │ │ │ │ └── scala │ │ │ │ │ └── typings │ │ │ │ │ └── vueScrollto │ │ │ │ │ ├── mod.scala │ │ │ │ │ ├── vueScrolltoBooleans.scala │ │ │ │ │ └── vueScrolltoRequire.scala │ │ │ └── vue │ │ │ │ ├── build.sbt │ │ │ │ ├── project │ │ │ │ ├── build.properties │ │ │ │ └── plugins.sbt │ │ │ │ ├── readme.md │ │ │ │ └── src │ │ │ │ └── main │ │ │ │ ├── resources │ │ │ │ └── NPM_DEPENDENCIES │ │ │ │ └── scala │ │ │ │ └── typings │ │ │ │ └── vue │ │ │ │ ├── anon.scala │ │ │ │ ├── mod.scala │ │ │ │ ├── typesOptionsMod.scala │ │ │ │ ├── typesPluginMod.scala │ │ │ │ ├── typesVnodeMod.scala │ │ │ │ ├── typesVueMod.scala │ │ │ │ └── vueRequire.scala │ │ └── w │ │ │ └── webpack-env │ │ │ ├── build.sbt │ │ │ ├── project │ │ │ ├── build.properties │ │ │ └── plugins.sbt │ │ │ ├── readme.md │ │ │ └── src │ │ │ └── main │ │ │ ├── resources │ │ │ └── NPM_DEPENDENCIES │ │ │ └── scala │ │ │ └── typings │ │ │ └── webpackEnv │ │ │ ├── NodeJS.scala │ │ │ ├── WebpackModuleApi.scala │ │ │ ├── global.scala │ │ │ ├── package.scala │ │ │ └── webpackEnvRequire.scala │ └── in │ │ ├── node │ │ └── index.d.ts │ │ ├── stdlib.d.ts │ │ ├── storybook__vue │ │ ├── index.d.ts │ │ ├── package.json │ │ ├── tsconfig.json │ │ └── tslint.json │ │ ├── vue-resource │ │ ├── index.d.ts │ │ ├── package.json │ │ ├── tsconfig.json │ │ └── tslint.json │ │ ├── vue-scrollto │ │ ├── index.d.ts │ │ ├── package.json │ │ ├── tsconfig.json │ │ └── tslint.json │ │ ├── vue │ │ ├── package.json │ │ └── types │ │ │ ├── index.d.ts │ │ │ ├── options.d.ts │ │ │ ├── plugin.d.ts │ │ │ ├── vnode.d.ts │ │ │ └── vue.d.ts │ │ └── webpack-env │ │ ├── index.d.ts │ │ ├── tsconfig.json │ │ └── tslint.json ├── winston │ ├── check-3 │ │ └── w │ │ │ └── winston │ │ │ ├── build.sbt │ │ │ ├── project │ │ │ ├── build.properties │ │ │ └── plugins.sbt │ │ │ ├── readme.md │ │ │ └── src │ │ │ └── main │ │ │ ├── resources │ │ │ └── NPM_DEPENDENCIES │ │ │ └── scala │ │ │ └── typings │ │ │ └── winston │ │ │ ├── libWinstonConfigMod.scala │ │ │ ├── mod.scala │ │ │ ├── winstonRequire.scala │ │ │ └── winstonStrings.scala │ └── in │ │ ├── stdlib.d.ts │ │ └── winston │ │ ├── index.d.ts │ │ ├── lib │ │ └── winston │ │ │ └── config │ │ │ └── index.d.ts │ │ ├── package.json │ │ └── tsconfig.json └── with-theme │ ├── check-3 │ ├── r │ │ └── react │ │ │ ├── build.sbt │ │ │ ├── project │ │ │ ├── build.properties │ │ │ └── plugins.sbt │ │ │ ├── readme.md │ │ │ └── src │ │ │ └── main │ │ │ └── scala │ │ │ └── typings │ │ │ └── react │ │ │ ├── anon.scala │ │ │ ├── mod.scala │ │ │ ├── reactRequire.scala │ │ │ └── reactStrings.scala │ ├── s │ │ └── std │ │ │ ├── build.sbt │ │ │ ├── project │ │ │ ├── build.properties │ │ │ └── plugins.sbt │ │ │ ├── readme.md │ │ │ └── src │ │ │ └── main │ │ │ └── scala │ │ │ └── typings │ │ │ └── std │ │ │ ├── Foo.scala │ │ │ ├── SomethingHasToBeHereApparently.scala │ │ │ ├── package.scala │ │ │ └── stdRequire.scala │ └── w │ │ └── with-theme │ │ ├── build.sbt │ │ ├── project │ │ ├── build.properties │ │ └── plugins.sbt │ │ ├── readme.md │ │ └── src │ │ └── main │ │ └── scala │ │ └── typings │ │ └── withTheme │ │ ├── mod.scala │ │ └── withThemeRequire.scala │ └── in │ ├── react │ └── index.d.ts │ ├── stdlib.d.ts │ └── with-theme │ └── index.d.ts ├── ts └── src │ └── main │ └── scala │ └── org │ └── scalablytyped │ └── converter │ └── internal │ └── ts │ ├── AllMembersFor.scala │ ├── CalculateLibraryVersion.scala │ ├── DeriveNonConflictingName.scala │ ├── FillInTParams.scala │ ├── FlattenTrees.scala │ ├── FollowAliases.scala │ ├── HasTParams.scala │ ├── Hoisting.scala │ ├── ModuleNameParser.scala │ ├── ParentsResolver.scala │ ├── Picker.scala │ ├── RemoveComment.scala │ ├── TreeTransformation.scala │ ├── TreeTransformations.scala │ ├── TsTreeScope.scala │ ├── TsTreeTraverse.scala │ ├── TypeParamsReferencedInTree.scala │ ├── metadata.scala │ ├── modules │ ├── AugmentModules.scala │ ├── DeriveCopy.scala │ ├── ExpandedMod.scala │ ├── Exports.scala │ ├── HandleCommonJsModules.scala │ ├── Imports.scala │ ├── InferredDefaultModule.scala │ ├── InferredDependency.scala │ ├── KeepTypesOnly.scala │ ├── ModuleAsGlobalNamespace.scala │ ├── MoveGlobals.scala │ ├── ReplaceExports.scala │ ├── RewriteExportStarAs.scala │ └── Utils.scala │ ├── parser │ ├── ImplicitConversions1.scala │ ├── ParserHelpers.scala │ ├── TsLexer.scala │ ├── TsParser.scala │ └── package.scala │ └── transforms │ ├── AddComments.scala │ ├── DefaultedTypeArguments.scala │ ├── DropProperties.scala │ ├── ExpandCallables.scala │ ├── ExpandTypeMappings.scala │ ├── ExpandTypeParams.scala │ ├── ExtractClasses.scala │ ├── ExtractInterfaces.scala │ ├── ForwardCtors.scala │ ├── InferEnumTypes.scala │ ├── InferReturnTypes.scala │ ├── InferTypeFromExpr.scala │ ├── InlineConstEnum.scala │ ├── InlineTrivial.scala │ ├── LibrarySpecific.scala │ ├── MoveStatics.scala │ ├── NormalizeFunctions.scala │ ├── PreferTypeAlias.scala │ ├── QualifyReferences.scala │ ├── RejiggerIntersections.scala │ ├── RemoveDifficultInheritance.scala │ ├── RemoveStubs.scala │ ├── ResolveTypeLookups.scala │ ├── ResolveTypeQueries.scala │ ├── RewriteTypeThis.scala │ ├── SetCodePath.scala │ ├── SetJsLocation.scala │ ├── SimplifyParents.scala │ ├── SplitMethods.scala │ ├── TypeAliasIntersection.scala │ ├── TypeAliasToConstEnum.scala │ ├── TypeRewriter.scala │ ├── UnionTypesFromKeyOf.scala │ └── VarToNamespace.scala └── website ├── .dockerignore ├── .gitignore ├── Dockerfile ├── core └── Footer.js ├── docker-compose.yml ├── package.json ├── pages └── en │ ├── help.js │ ├── index.js │ └── users.js ├── sidebars.json ├── siteConfig.js ├── static ├── CNAME ├── css │ └── custom.css └── img │ ├── favicon-st1.ico │ ├── favicon-st3.ico │ ├── favicon.ico │ ├── logo-1.svg │ ├── logo-2.svg │ ├── logo-3.svg │ ├── logo-4.svg │ ├── logo-5.svg │ ├── oss_logo.png │ ├── scalablytyped.svg │ ├── undraw_code_review.svg │ ├── undraw_note_list.svg │ ├── undraw_online.svg │ ├── undraw_open_source.svg │ ├── undraw_operating_system.svg │ ├── undraw_react.svg │ ├── undraw_tweetstorm.svg │ └── undraw_youtube_tutorial.svg └── yarn.lock /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/ci-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/.github/workflows/ci-build.yml -------------------------------------------------------------------------------- /.github/workflows/release-snapshot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/.github/workflows/release-snapshot.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/.gitignore -------------------------------------------------------------------------------- /.mergify.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/.mergify.yml -------------------------------------------------------------------------------- /.run/BintrayCleanup.run.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/.run/BintrayCleanup.run.xml -------------------------------------------------------------------------------- /.run/CI All sequential Japgolly.run.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/.run/CI All sequential Japgolly.run.xml -------------------------------------------------------------------------------- /.run/CI All sequential Slinky.run.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/.run/CI All sequential Slinky.run.xml -------------------------------------------------------------------------------- /.run/CI Demoset Japgolly.run.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/.run/CI Demoset Japgolly.run.xml -------------------------------------------------------------------------------- /.run/CI Demoset Slinky.run.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/.run/CI Demoset Slinky.run.xml -------------------------------------------------------------------------------- /.run/CI Demoset.run.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/.run/CI Demoset.run.xml -------------------------------------------------------------------------------- /.run/ImporterTest.run.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/.run/ImporterTest.run.xml -------------------------------------------------------------------------------- /.run/Main All.run.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/.run/Main All.run.xml -------------------------------------------------------------------------------- /.sbtopts: -------------------------------------------------------------------------------- 1 | -J-XX:+UseG1GC 2 | 3 | -------------------------------------------------------------------------------- /.scala-steward.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/.scala-steward.conf -------------------------------------------------------------------------------- /.scalafmt.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/.scalafmt.conf -------------------------------------------------------------------------------- /CLAUDE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/CLAUDE.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/README.md -------------------------------------------------------------------------------- /cli/src/main/scala/org/scalablytyped/converter/cli/Main.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/cli/src/main/scala/org/scalablytyped/converter/cli/Main.scala -------------------------------------------------------------------------------- /core/src/main/scala/org/scalablytyped/converter/Selection.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/core/src/main/scala/org/scalablytyped/converter/Selection.scala -------------------------------------------------------------------------------- /docs/cli.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/docs/cli.md -------------------------------------------------------------------------------- /docs/conversion-options.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/docs/conversion-options.md -------------------------------------------------------------------------------- /docs/devel/about.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/docs/devel/about.md -------------------------------------------------------------------------------- /docs/devel/running.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/docs/devel/running.md -------------------------------------------------------------------------------- /docs/encoding.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/docs/encoding.md -------------------------------------------------------------------------------- /docs/flavour.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/docs/flavour.md -------------------------------------------------------------------------------- /docs/import-problems.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/docs/import-problems.md -------------------------------------------------------------------------------- /docs/library-developer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/docs/library-developer.md -------------------------------------------------------------------------------- /docs/objects.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/docs/objects.md -------------------------------------------------------------------------------- /docs/plugin-no-bundler.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/docs/plugin-no-bundler.md -------------------------------------------------------------------------------- /docs/plugin.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/docs/plugin.md -------------------------------------------------------------------------------- /docs/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/docs/readme.md -------------------------------------------------------------------------------- /docs/release-announcement.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/docs/release-announcement.md -------------------------------------------------------------------------------- /docs/remotecache.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/docs/remotecache.md -------------------------------------------------------------------------------- /docs/usage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/docs/usage.md -------------------------------------------------------------------------------- /import-scalajs-definitions/src/test/resources/imported/org.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/import-scalajs-definitions/src/test/resources/imported/org.scala -------------------------------------------------------------------------------- /importer/src/main/scala/org/scalablytyped/converter/Main.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/importer/src/main/scala/org/scalablytyped/converter/Main.scala -------------------------------------------------------------------------------- /importer/src/test/resources/parsertests/ArrayBuffer.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/importer/src/test/resources/parsertests/ArrayBuffer.d.ts -------------------------------------------------------------------------------- /importer/src/test/resources/parsertests/adal.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/importer/src/test/resources/parsertests/adal.d.ts -------------------------------------------------------------------------------- /importer/src/test/resources/parsertests/adm-zip.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/importer/src/test/resources/parsertests/adm-zip.d.ts -------------------------------------------------------------------------------- /importer/src/test/resources/parsertests/egg.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/importer/src/test/resources/parsertests/egg.d.ts -------------------------------------------------------------------------------- /importer/src/test/resources/parsertests/emissary.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/importer/src/test/resources/parsertests/emissary.d.ts -------------------------------------------------------------------------------- /importer/src/test/resources/parsertests/graphql.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/importer/src/test/resources/parsertests/graphql.d.ts -------------------------------------------------------------------------------- /importer/src/test/resources/parsertests/history.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/importer/src/test/resources/parsertests/history.d.ts -------------------------------------------------------------------------------- /importer/src/test/resources/parsertests/knockout.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/importer/src/test/resources/parsertests/knockout.d.ts -------------------------------------------------------------------------------- /importer/src/test/resources/parsertests/mathfield.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/importer/src/test/resources/parsertests/mathfield.d.ts -------------------------------------------------------------------------------- /importer/src/test/resources/parsertests/path-case.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/importer/src/test/resources/parsertests/path-case.d.ts -------------------------------------------------------------------------------- /importer/src/test/resources/parsertests/trailing-commas.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/importer/src/test/resources/parsertests/trailing-commas.d.ts -------------------------------------------------------------------------------- /logging/src/main/scala/com/olvind/logging/Formatter.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/logging/src/main/scala/com/olvind/logging/Formatter.scala -------------------------------------------------------------------------------- /logging/src/main/scala/com/olvind/logging/LogLevel.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/logging/src/main/scala/com/olvind/logging/LogLevel.scala -------------------------------------------------------------------------------- /logging/src/main/scala/com/olvind/logging/LogRegistry.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/logging/src/main/scala/com/olvind/logging/LogRegistry.scala -------------------------------------------------------------------------------- /logging/src/main/scala/com/olvind/logging/Logger.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/logging/src/main/scala/com/olvind/logging/Logger.scala -------------------------------------------------------------------------------- /logging/src/main/scala/com/olvind/logging/Metadata.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/logging/src/main/scala/com/olvind/logging/Metadata.scala -------------------------------------------------------------------------------- /logging/src/main/scala/com/olvind/logging/Pattern.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/logging/src/main/scala/com/olvind/logging/Pattern.scala -------------------------------------------------------------------------------- /logging/src/main/scala/com/olvind/logging/package.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/logging/src/main/scala/com/olvind/logging/package.scala -------------------------------------------------------------------------------- /project/Deps.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/project/Deps.scala -------------------------------------------------------------------------------- /project/build.properties: -------------------------------------------------------------------------------- 1 | sbt.version=1.11.1 2 | -------------------------------------------------------------------------------- /project/plugins.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/project/plugins.sbt -------------------------------------------------------------------------------- /release.sc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/release.sc -------------------------------------------------------------------------------- /sbt-converter/src/sbt-test/react/external/build.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/sbt-converter/src/sbt-test/react/external/build.sbt -------------------------------------------------------------------------------- /sbt-converter/src/sbt-test/react/external/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/sbt-converter/src/sbt-test/react/external/package.json -------------------------------------------------------------------------------- /sbt-converter/src/sbt-test/react/external/project/build.properties: -------------------------------------------------------------------------------- 1 | sbt.version=1.9.0 2 | -------------------------------------------------------------------------------- /sbt-converter/src/sbt-test/react/external/project/plugins.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/sbt-converter/src/sbt-test/react/external/project/plugins.sbt -------------------------------------------------------------------------------- /sbt-converter/src/sbt-test/react/external/test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/sbt-converter/src/sbt-test/react/external/test -------------------------------------------------------------------------------- /sbt-converter/src/sbt-test/react/japgolly/build.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/sbt-converter/src/sbt-test/react/japgolly/build.sbt -------------------------------------------------------------------------------- /sbt-converter/src/sbt-test/react/japgolly/project/build.properties: -------------------------------------------------------------------------------- 1 | sbt.version=1.9.6 2 | -------------------------------------------------------------------------------- /sbt-converter/src/sbt-test/react/japgolly/project/plugins.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/sbt-converter/src/sbt-test/react/japgolly/project/plugins.sbt -------------------------------------------------------------------------------- /sbt-converter/src/sbt-test/react/japgolly/test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/sbt-converter/src/sbt-test/react/japgolly/test -------------------------------------------------------------------------------- /sbt-converter/src/sbt-test/react/sourcegen-mixed/build.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/sbt-converter/src/sbt-test/react/sourcegen-mixed/build.sbt -------------------------------------------------------------------------------- /sbt-converter/src/sbt-test/react/sourcegen-mixed/project/build.properties: -------------------------------------------------------------------------------- 1 | sbt.version=1.8.0 2 | -------------------------------------------------------------------------------- /sbt-converter/src/sbt-test/react/sourcegen-mixed/test: -------------------------------------------------------------------------------- 1 | > app/run 2 | -------------------------------------------------------------------------------- /sbt-converter/src/sbt-test/react/sourcegen/build.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/sbt-converter/src/sbt-test/react/sourcegen/build.sbt -------------------------------------------------------------------------------- /sbt-converter/src/sbt-test/react/sourcegen/project/build.properties: -------------------------------------------------------------------------------- 1 | sbt.version=1.8.0 2 | -------------------------------------------------------------------------------- /sbt-converter/src/sbt-test/react/sourcegen/project/plugins.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/sbt-converter/src/sbt-test/react/sourcegen/project/plugins.sbt -------------------------------------------------------------------------------- /sbt-converter/src/sbt-test/react/sourcegen/test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/sbt-converter/src/sbt-test/react/sourcegen/test -------------------------------------------------------------------------------- /scalablytyped-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/scalablytyped-icon.svg -------------------------------------------------------------------------------- /scalajs/src/main/resources/html.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/scalajs/src/main/resources/html.json -------------------------------------------------------------------------------- /scalajs/src/main/resources/scalajs-definitions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/scalajs/src/main/resources/scalajs-definitions.json -------------------------------------------------------------------------------- /scalajs/src/main/resources/svg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/scalajs/src/main/resources/svg.json -------------------------------------------------------------------------------- /scalajs/src/main/scala/org/scalablytyped/converter/Flavour.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/scalajs/src/main/scala/org/scalablytyped/converter/Flavour.scala -------------------------------------------------------------------------------- /tests/antd/check-3/a/antd/build.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/antd/check-3/a/antd/build.sbt -------------------------------------------------------------------------------- /tests/antd/check-3/a/antd/project/build.properties: -------------------------------------------------------------------------------- 1 | sbt.version=1.11.6 -------------------------------------------------------------------------------- /tests/antd/check-3/a/antd/project/plugins.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/antd/check-3/a/antd/project/plugins.sbt -------------------------------------------------------------------------------- /tests/antd/check-3/a/antd/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/antd/check-3/a/antd/readme.md -------------------------------------------------------------------------------- /tests/antd/check-3/a/antd/src/main/resources/NPM_DEPENDENCIES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/antd/check-3/a/antd/src/main/resources/NPM_DEPENDENCIES -------------------------------------------------------------------------------- /tests/antd/check-3/r/rc-field-form/build.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/antd/check-3/r/rc-field-form/build.sbt -------------------------------------------------------------------------------- /tests/antd/check-3/r/rc-field-form/project/build.properties: -------------------------------------------------------------------------------- 1 | sbt.version=1.11.6 -------------------------------------------------------------------------------- /tests/antd/check-3/r/rc-field-form/project/plugins.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/antd/check-3/r/rc-field-form/project/plugins.sbt -------------------------------------------------------------------------------- /tests/antd/check-3/r/rc-field-form/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/antd/check-3/r/rc-field-form/readme.md -------------------------------------------------------------------------------- /tests/antd/in/antd/lib/form/Form.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/antd/in/antd/lib/form/Form.d.ts -------------------------------------------------------------------------------- /tests/antd/in/antd/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/antd/in/antd/package.json -------------------------------------------------------------------------------- /tests/antd/in/rc-field-form/es/Form.d.ts: -------------------------------------------------------------------------------- 1 | export interface FormProps { 2 | name?: string; 3 | } 4 | -------------------------------------------------------------------------------- /tests/antd/in/rc-field-form/es/index.d.ts: -------------------------------------------------------------------------------- 1 | import { FormProps } from './Form'; 2 | -------------------------------------------------------------------------------- /tests/antd/in/rc-field-form/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/antd/in/rc-field-form/package.json -------------------------------------------------------------------------------- /tests/antd/in/stdlib.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/antd/in/stdlib.d.ts -------------------------------------------------------------------------------- /tests/augment-module/check-3/l/lodash/build.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/augment-module/check-3/l/lodash/build.sbt -------------------------------------------------------------------------------- /tests/augment-module/check-3/l/lodash/project/build.properties: -------------------------------------------------------------------------------- 1 | sbt.version=1.11.6 -------------------------------------------------------------------------------- /tests/augment-module/check-3/l/lodash/project/plugins.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/augment-module/check-3/l/lodash/project/plugins.sbt -------------------------------------------------------------------------------- /tests/augment-module/check-3/l/lodash/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/augment-module/check-3/l/lodash/readme.md -------------------------------------------------------------------------------- /tests/augment-module/check-3/l/lodash_dot_add/build.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/augment-module/check-3/l/lodash_dot_add/build.sbt -------------------------------------------------------------------------------- /tests/augment-module/check-3/l/lodash_dot_add/project/build.properties: -------------------------------------------------------------------------------- 1 | sbt.version=1.11.6 -------------------------------------------------------------------------------- /tests/augment-module/check-3/l/lodash_dot_add/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/augment-module/check-3/l/lodash_dot_add/readme.md -------------------------------------------------------------------------------- /tests/augment-module/check-3/s/std/build.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/augment-module/check-3/s/std/build.sbt -------------------------------------------------------------------------------- /tests/augment-module/check-3/s/std/project/build.properties: -------------------------------------------------------------------------------- 1 | sbt.version=1.11.6 -------------------------------------------------------------------------------- /tests/augment-module/check-3/s/std/project/plugins.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/augment-module/check-3/s/std/project/plugins.sbt -------------------------------------------------------------------------------- /tests/augment-module/check-3/s/std/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/augment-module/check-3/s/std/readme.md -------------------------------------------------------------------------------- /tests/augment-module/in/lodash.add/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/augment-module/in/lodash.add/index.d.ts -------------------------------------------------------------------------------- /tests/augment-module/in/lodash.add/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/augment-module/in/lodash.add/tsconfig.json -------------------------------------------------------------------------------- /tests/augment-module/in/lodash.add/tslint.json: -------------------------------------------------------------------------------- 1 | { "extends": "dtslint/dt.json" } 2 | -------------------------------------------------------------------------------- /tests/augment-module/in/lodash/add.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/augment-module/in/lodash/add.d.ts -------------------------------------------------------------------------------- /tests/augment-module/in/lodash/at.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/augment-module/in/lodash/at.d.ts -------------------------------------------------------------------------------- /tests/augment-module/in/lodash/common/common.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/augment-module/in/lodash/common/common.d.ts -------------------------------------------------------------------------------- /tests/augment-module/in/lodash/common/function.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/augment-module/in/lodash/common/function.d.ts -------------------------------------------------------------------------------- /tests/augment-module/in/lodash/common/math.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/augment-module/in/lodash/common/math.d.ts -------------------------------------------------------------------------------- /tests/augment-module/in/lodash/common/object.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/augment-module/in/lodash/common/object.d.ts -------------------------------------------------------------------------------- /tests/augment-module/in/lodash/fp.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/augment-module/in/lodash/fp.d.ts -------------------------------------------------------------------------------- /tests/augment-module/in/lodash/fp/curry.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/augment-module/in/lodash/fp/curry.d.ts -------------------------------------------------------------------------------- /tests/augment-module/in/lodash/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/augment-module/in/lodash/index.d.ts -------------------------------------------------------------------------------- /tests/augment-module/in/lodash/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/augment-module/in/lodash/tsconfig.json -------------------------------------------------------------------------------- /tests/augment-module/in/stdlib.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/augment-module/in/stdlib.d.ts -------------------------------------------------------------------------------- /tests/aws-sdk/check-3/a/aws-sdk/build.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/aws-sdk/check-3/a/aws-sdk/build.sbt -------------------------------------------------------------------------------- /tests/aws-sdk/check-3/a/aws-sdk/project/build.properties: -------------------------------------------------------------------------------- 1 | sbt.version=1.11.6 -------------------------------------------------------------------------------- /tests/aws-sdk/check-3/a/aws-sdk/project/plugins.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/aws-sdk/check-3/a/aws-sdk/project/plugins.sbt -------------------------------------------------------------------------------- /tests/aws-sdk/check-3/a/aws-sdk/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/aws-sdk/check-3/a/aws-sdk/readme.md -------------------------------------------------------------------------------- /tests/aws-sdk/in/aws-sdk/clients/all.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/aws-sdk/in/aws-sdk/clients/all.d.ts -------------------------------------------------------------------------------- /tests/aws-sdk/in/aws-sdk/clients/dynamodb.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/aws-sdk/in/aws-sdk/clients/dynamodb.d.ts -------------------------------------------------------------------------------- /tests/aws-sdk/in/aws-sdk/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/aws-sdk/in/aws-sdk/index.d.ts -------------------------------------------------------------------------------- /tests/aws-sdk/in/aws-sdk/lib/config.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/aws-sdk/in/aws-sdk/lib/config.d.ts -------------------------------------------------------------------------------- /tests/aws-sdk/in/aws-sdk/lib/config_service_placeholders.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/aws-sdk/in/aws-sdk/lib/config_service_placeholders.d.ts -------------------------------------------------------------------------------- /tests/aws-sdk/in/aws-sdk/lib/dynamodb/converter.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/aws-sdk/in/aws-sdk/lib/dynamodb/converter.d.ts -------------------------------------------------------------------------------- /tests/aws-sdk/in/aws-sdk/lib/dynamodb/document_client.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/aws-sdk/in/aws-sdk/lib/dynamodb/document_client.d.ts -------------------------------------------------------------------------------- /tests/aws-sdk/in/aws-sdk/lib/services/dynamodb.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/aws-sdk/in/aws-sdk/lib/services/dynamodb.d.ts -------------------------------------------------------------------------------- /tests/aws-sdk/in/aws-sdk/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/aws-sdk/in/aws-sdk/package.json -------------------------------------------------------------------------------- /tests/aws-sdk/in/stdlib.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | 3 | interface Array {} 4 | -------------------------------------------------------------------------------- /tests/babylon/check-3/b/babylon/build.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/babylon/check-3/b/babylon/build.sbt -------------------------------------------------------------------------------- /tests/babylon/check-3/b/babylon/project/build.properties: -------------------------------------------------------------------------------- 1 | sbt.version=1.11.6 -------------------------------------------------------------------------------- /tests/babylon/check-3/b/babylon/project/plugins.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/babylon/check-3/b/babylon/project/plugins.sbt -------------------------------------------------------------------------------- /tests/babylon/check-3/b/babylon/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/babylon/check-3/b/babylon/readme.md -------------------------------------------------------------------------------- /tests/babylon/check-3/n/node/build.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/babylon/check-3/n/node/build.sbt -------------------------------------------------------------------------------- /tests/babylon/check-3/n/node/project/build.properties: -------------------------------------------------------------------------------- 1 | sbt.version=1.11.6 -------------------------------------------------------------------------------- /tests/babylon/check-3/n/node/project/plugins.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/babylon/check-3/n/node/project/plugins.sbt -------------------------------------------------------------------------------- /tests/babylon/check-3/n/node/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/babylon/check-3/n/node/readme.md -------------------------------------------------------------------------------- /tests/babylon/in/babylon/babylon.module.minimized.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/babylon/in/babylon/babylon.module.minimized.d.ts -------------------------------------------------------------------------------- /tests/babylon/in/node/index.d.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/babylon/in/stdlib.d.ts: -------------------------------------------------------------------------------- 1 | interface Array {} 2 | -------------------------------------------------------------------------------- /tests/bigint/check-3/b/bigint/build.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/bigint/check-3/b/bigint/build.sbt -------------------------------------------------------------------------------- /tests/bigint/check-3/b/bigint/project/build.properties: -------------------------------------------------------------------------------- 1 | sbt.version=1.11.6 -------------------------------------------------------------------------------- /tests/bigint/check-3/b/bigint/project/plugins.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/bigint/check-3/b/bigint/project/plugins.sbt -------------------------------------------------------------------------------- /tests/bigint/check-3/b/bigint/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/bigint/check-3/b/bigint/readme.md -------------------------------------------------------------------------------- /tests/bigint/check-3/s/std/build.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/bigint/check-3/s/std/build.sbt -------------------------------------------------------------------------------- /tests/bigint/check-3/s/std/project/build.properties: -------------------------------------------------------------------------------- 1 | sbt.version=1.11.6 -------------------------------------------------------------------------------- /tests/bigint/check-3/s/std/project/plugins.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/bigint/check-3/s/std/project/plugins.sbt -------------------------------------------------------------------------------- /tests/bigint/check-3/s/std/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/bigint/check-3/s/std/readme.md -------------------------------------------------------------------------------- /tests/bigint/in/bigint/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/bigint/in/bigint/index.d.ts -------------------------------------------------------------------------------- /tests/bigint/in/stdlib.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/bigint/in/stdlib.d.ts -------------------------------------------------------------------------------- /tests/chart.js/check-3/c/chart_dot_js/build.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/chart.js/check-3/c/chart_dot_js/build.sbt -------------------------------------------------------------------------------- /tests/chart.js/check-3/c/chart_dot_js/project/build.properties: -------------------------------------------------------------------------------- 1 | sbt.version=1.11.6 -------------------------------------------------------------------------------- /tests/chart.js/check-3/c/chart_dot_js/project/plugins.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/chart.js/check-3/c/chart_dot_js/project/plugins.sbt -------------------------------------------------------------------------------- /tests/chart.js/check-3/c/chart_dot_js/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/chart.js/check-3/c/chart_dot_js/readme.md -------------------------------------------------------------------------------- /tests/chart.js/check-3/s/std/build.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/chart.js/check-3/s/std/build.sbt -------------------------------------------------------------------------------- /tests/chart.js/check-3/s/std/project/build.properties: -------------------------------------------------------------------------------- 1 | sbt.version=1.11.6 -------------------------------------------------------------------------------- /tests/chart.js/check-3/s/std/project/plugins.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/chart.js/check-3/s/std/project/plugins.sbt -------------------------------------------------------------------------------- /tests/chart.js/check-3/s/std/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/chart.js/check-3/s/std/readme.md -------------------------------------------------------------------------------- /tests/chart.js/in/chart.js/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/chart.js/in/chart.js/index.d.ts -------------------------------------------------------------------------------- /tests/chart.js/in/chart.js/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/chart.js/in/chart.js/tsconfig.json -------------------------------------------------------------------------------- /tests/chart.js/in/chart.js/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/chart.js/in/chart.js/tslint.json -------------------------------------------------------------------------------- /tests/chart.js/in/stdlib.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/chart.js/in/stdlib.d.ts -------------------------------------------------------------------------------- /tests/cldrjs/check-3/c/cldrjs/build.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/cldrjs/check-3/c/cldrjs/build.sbt -------------------------------------------------------------------------------- /tests/cldrjs/check-3/c/cldrjs/project/build.properties: -------------------------------------------------------------------------------- 1 | sbt.version=1.11.6 -------------------------------------------------------------------------------- /tests/cldrjs/check-3/c/cldrjs/project/plugins.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/cldrjs/check-3/c/cldrjs/project/plugins.sbt -------------------------------------------------------------------------------- /tests/cldrjs/check-3/c/cldrjs/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/cldrjs/check-3/c/cldrjs/readme.md -------------------------------------------------------------------------------- /tests/cldrjs/check-3/s/std/build.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/cldrjs/check-3/s/std/build.sbt -------------------------------------------------------------------------------- /tests/cldrjs/check-3/s/std/project/build.properties: -------------------------------------------------------------------------------- 1 | sbt.version=1.11.6 -------------------------------------------------------------------------------- /tests/cldrjs/check-3/s/std/project/plugins.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/cldrjs/check-3/s/std/project/plugins.sbt -------------------------------------------------------------------------------- /tests/cldrjs/check-3/s/std/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/cldrjs/check-3/s/std/readme.md -------------------------------------------------------------------------------- /tests/cldrjs/in/cldrjs/cldr.js-event.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/cldrjs/in/cldrjs/cldr.js-event.d.ts -------------------------------------------------------------------------------- /tests/cldrjs/in/cldrjs/cldr.js-supplemental.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/cldrjs/in/cldrjs/cldr.js-supplemental.d.ts -------------------------------------------------------------------------------- /tests/cldrjs/in/cldrjs/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/cldrjs/in/cldrjs/index.d.ts -------------------------------------------------------------------------------- /tests/cldrjs/in/cldrjs/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/cldrjs/in/cldrjs/tsconfig.json -------------------------------------------------------------------------------- /tests/cldrjs/in/stdlib.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | 3 | interface Array{} 4 | -------------------------------------------------------------------------------- /tests/commander/check-3/c/commander/build.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/commander/check-3/c/commander/build.sbt -------------------------------------------------------------------------------- /tests/commander/check-3/c/commander/project/build.properties: -------------------------------------------------------------------------------- 1 | sbt.version=1.11.6 -------------------------------------------------------------------------------- /tests/commander/check-3/c/commander/project/plugins.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/commander/check-3/c/commander/project/plugins.sbt -------------------------------------------------------------------------------- /tests/commander/check-3/c/commander/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/commander/check-3/c/commander/readme.md -------------------------------------------------------------------------------- /tests/commander/check-3/n/node/build.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/commander/check-3/n/node/build.sbt -------------------------------------------------------------------------------- /tests/commander/check-3/n/node/project/build.properties: -------------------------------------------------------------------------------- 1 | sbt.version=1.11.6 -------------------------------------------------------------------------------- /tests/commander/check-3/n/node/project/plugins.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/commander/check-3/n/node/project/plugins.sbt -------------------------------------------------------------------------------- /tests/commander/check-3/n/node/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/commander/check-3/n/node/readme.md -------------------------------------------------------------------------------- /tests/commander/check-3/s/std/build.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/commander/check-3/s/std/build.sbt -------------------------------------------------------------------------------- /tests/commander/check-3/s/std/project/build.properties: -------------------------------------------------------------------------------- 1 | sbt.version=1.11.6 -------------------------------------------------------------------------------- /tests/commander/check-3/s/std/project/plugins.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/commander/check-3/s/std/project/plugins.sbt -------------------------------------------------------------------------------- /tests/commander/check-3/s/std/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/commander/check-3/s/std/readme.md -------------------------------------------------------------------------------- /tests/commander/in/commander/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/commander/in/commander/package.json -------------------------------------------------------------------------------- /tests/commander/in/commander/typings/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/commander/in/commander/typings/index.d.ts -------------------------------------------------------------------------------- /tests/commander/in/node/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/commander/in/node/index.d.ts -------------------------------------------------------------------------------- /tests/commander/in/stdlib.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/commander/in/stdlib.d.ts -------------------------------------------------------------------------------- /tests/const-enum/check-3/c/const-enum/build.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/const-enum/check-3/c/const-enum/build.sbt -------------------------------------------------------------------------------- /tests/const-enum/check-3/c/const-enum/project/build.properties: -------------------------------------------------------------------------------- 1 | sbt.version=1.11.6 -------------------------------------------------------------------------------- /tests/const-enum/check-3/c/const-enum/project/plugins.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/const-enum/check-3/c/const-enum/project/plugins.sbt -------------------------------------------------------------------------------- /tests/const-enum/check-3/c/const-enum/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/const-enum/check-3/c/const-enum/readme.md -------------------------------------------------------------------------------- /tests/const-enum/in/const-enum/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/const-enum/in/const-enum/index.d.ts -------------------------------------------------------------------------------- /tests/const-enum/in/stdlib.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /tests/create-error/check-3/c/create-error/build.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/create-error/check-3/c/create-error/build.sbt -------------------------------------------------------------------------------- /tests/create-error/check-3/c/create-error/project/build.properties: -------------------------------------------------------------------------------- 1 | sbt.version=1.11.6 -------------------------------------------------------------------------------- /tests/create-error/check-3/c/create-error/project/plugins.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/create-error/check-3/c/create-error/project/plugins.sbt -------------------------------------------------------------------------------- /tests/create-error/check-3/c/create-error/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/create-error/check-3/c/create-error/readme.md -------------------------------------------------------------------------------- /tests/create-error/check-3/s/std/build.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/create-error/check-3/s/std/build.sbt -------------------------------------------------------------------------------- /tests/create-error/check-3/s/std/project/build.properties: -------------------------------------------------------------------------------- 1 | sbt.version=1.11.6 -------------------------------------------------------------------------------- /tests/create-error/check-3/s/std/project/plugins.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/create-error/check-3/s/std/project/plugins.sbt -------------------------------------------------------------------------------- /tests/create-error/check-3/s/std/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/create-error/check-3/s/std/readme.md -------------------------------------------------------------------------------- /tests/create-error/in/create-error/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/create-error/in/create-error/index.d.ts -------------------------------------------------------------------------------- /tests/create-error/in/stdlib.d.ts: -------------------------------------------------------------------------------- 1 | interface Error{} 2 | -------------------------------------------------------------------------------- /tests/defaulted-tparams/check-3/d/defaulted-tparams/build.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/defaulted-tparams/check-3/d/defaulted-tparams/build.sbt -------------------------------------------------------------------------------- /tests/defaulted-tparams/check-3/d/defaulted-tparams/project/build.properties: -------------------------------------------------------------------------------- 1 | sbt.version=1.11.6 -------------------------------------------------------------------------------- /tests/defaulted-tparams/check-3/d/defaulted-tparams/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/defaulted-tparams/check-3/d/defaulted-tparams/readme.md -------------------------------------------------------------------------------- /tests/defaulted-tparams/check-3/s/std/build.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/defaulted-tparams/check-3/s/std/build.sbt -------------------------------------------------------------------------------- /tests/defaulted-tparams/check-3/s/std/project/build.properties: -------------------------------------------------------------------------------- 1 | sbt.version=1.11.6 -------------------------------------------------------------------------------- /tests/defaulted-tparams/check-3/s/std/project/plugins.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/defaulted-tparams/check-3/s/std/project/plugins.sbt -------------------------------------------------------------------------------- /tests/defaulted-tparams/check-3/s/std/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/defaulted-tparams/check-3/s/std/readme.md -------------------------------------------------------------------------------- /tests/defaulted-tparams/in/defaulted-tparams/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/defaulted-tparams/in/defaulted-tparams/index.d.ts -------------------------------------------------------------------------------- /tests/defaulted-tparams/in/stdlib.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/defaulted-tparams/in/stdlib.d.ts -------------------------------------------------------------------------------- /tests/documentation/check-3/d/documentation/build.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/documentation/check-3/d/documentation/build.sbt -------------------------------------------------------------------------------- /tests/documentation/check-3/d/documentation/project/build.properties: -------------------------------------------------------------------------------- 1 | sbt.version=1.11.6 -------------------------------------------------------------------------------- /tests/documentation/check-3/d/documentation/project/plugins.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/documentation/check-3/d/documentation/project/plugins.sbt -------------------------------------------------------------------------------- /tests/documentation/check-3/d/documentation/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/documentation/check-3/d/documentation/readme.md -------------------------------------------------------------------------------- /tests/documentation/in/documentation/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/documentation/in/documentation/index.d.ts -------------------------------------------------------------------------------- /tests/documentation/in/stdlib.d.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/echarts/check-3/e/echarts/build.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/echarts/check-3/e/echarts/build.sbt -------------------------------------------------------------------------------- /tests/echarts/check-3/e/echarts/project/build.properties: -------------------------------------------------------------------------------- 1 | sbt.version=1.11.6 -------------------------------------------------------------------------------- /tests/echarts/check-3/e/echarts/project/plugins.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/echarts/check-3/e/echarts/project/plugins.sbt -------------------------------------------------------------------------------- /tests/echarts/check-3/e/echarts/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/echarts/check-3/e/echarts/readme.md -------------------------------------------------------------------------------- /tests/echarts/in/echarts/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/echarts/in/echarts/index.d.ts -------------------------------------------------------------------------------- /tests/echarts/in/stdlib.d.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/elasticsearch-js/check-3/e/elasticsearch-js/build.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/elasticsearch-js/check-3/e/elasticsearch-js/build.sbt -------------------------------------------------------------------------------- /tests/elasticsearch-js/check-3/e/elasticsearch-js/project/build.properties: -------------------------------------------------------------------------------- 1 | sbt.version=1.11.6 -------------------------------------------------------------------------------- /tests/elasticsearch-js/check-3/e/elasticsearch-js/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/elasticsearch-js/check-3/e/elasticsearch-js/readme.md -------------------------------------------------------------------------------- /tests/elasticsearch-js/check-3/s/std/build.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/elasticsearch-js/check-3/s/std/build.sbt -------------------------------------------------------------------------------- /tests/elasticsearch-js/check-3/s/std/project/build.properties: -------------------------------------------------------------------------------- 1 | sbt.version=1.11.6 -------------------------------------------------------------------------------- /tests/elasticsearch-js/check-3/s/std/project/plugins.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/elasticsearch-js/check-3/s/std/project/plugins.sbt -------------------------------------------------------------------------------- /tests/elasticsearch-js/check-3/s/std/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/elasticsearch-js/check-3/s/std/readme.md -------------------------------------------------------------------------------- /tests/elasticsearch-js/in/elasticsearch-js/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/elasticsearch-js/in/elasticsearch-js/index.d.ts -------------------------------------------------------------------------------- /tests/elasticsearch-js/in/stdlib.d.ts: -------------------------------------------------------------------------------- 1 | declare interface Promise { 2 | 3 | } -------------------------------------------------------------------------------- /tests/electron/check-3/e/electron/build.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/electron/check-3/e/electron/build.sbt -------------------------------------------------------------------------------- /tests/electron/check-3/e/electron/project/build.properties: -------------------------------------------------------------------------------- 1 | sbt.version=1.11.6 -------------------------------------------------------------------------------- /tests/electron/check-3/e/electron/project/plugins.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/electron/check-3/e/electron/project/plugins.sbt -------------------------------------------------------------------------------- /tests/electron/check-3/e/electron/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/electron/check-3/e/electron/readme.md -------------------------------------------------------------------------------- /tests/electron/check-3/n/node/build.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/electron/check-3/n/node/build.sbt -------------------------------------------------------------------------------- /tests/electron/check-3/n/node/project/build.properties: -------------------------------------------------------------------------------- 1 | sbt.version=1.11.6 -------------------------------------------------------------------------------- /tests/electron/check-3/n/node/project/plugins.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/electron/check-3/n/node/project/plugins.sbt -------------------------------------------------------------------------------- /tests/electron/check-3/n/node/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/electron/check-3/n/node/readme.md -------------------------------------------------------------------------------- /tests/electron/check-3/s/std/build.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/electron/check-3/s/std/build.sbt -------------------------------------------------------------------------------- /tests/electron/check-3/s/std/project/build.properties: -------------------------------------------------------------------------------- 1 | sbt.version=1.11.6 -------------------------------------------------------------------------------- /tests/electron/check-3/s/std/project/plugins.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/electron/check-3/s/std/project/plugins.sbt -------------------------------------------------------------------------------- /tests/electron/check-3/s/std/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/electron/check-3/s/std/readme.md -------------------------------------------------------------------------------- /tests/electron/in/electron/electron.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/electron/in/electron/electron.d.ts -------------------------------------------------------------------------------- /tests/electron/in/electron/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "types": "electron.d.ts" 3 | } -------------------------------------------------------------------------------- /tests/electron/in/electron/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/electron/in/electron/tsconfig.json -------------------------------------------------------------------------------- /tests/electron/in/node/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/electron/in/node/index.d.ts -------------------------------------------------------------------------------- /tests/electron/in/stdlib.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/electron/in/stdlib.d.ts -------------------------------------------------------------------------------- /tests/expand-type-parameters/check-3/e/expand-type-parameters/project/build.properties: -------------------------------------------------------------------------------- 1 | sbt.version=1.11.6 -------------------------------------------------------------------------------- /tests/expand-type-parameters/in/stdlib.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/expand-type-parameters/in/stdlib.d.ts -------------------------------------------------------------------------------- /tests/export-as-namespace/check-3/a/angular-agility/build.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/export-as-namespace/check-3/a/angular-agility/build.sbt -------------------------------------------------------------------------------- /tests/export-as-namespace/check-3/a/angular-agility/project/build.properties: -------------------------------------------------------------------------------- 1 | sbt.version=1.11.6 -------------------------------------------------------------------------------- /tests/export-as-namespace/check-3/a/angular-agility/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/export-as-namespace/check-3/a/angular-agility/readme.md -------------------------------------------------------------------------------- /tests/export-as-namespace/check-3/a/angular/build.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/export-as-namespace/check-3/a/angular/build.sbt -------------------------------------------------------------------------------- /tests/export-as-namespace/check-3/a/angular/project/build.properties: -------------------------------------------------------------------------------- 1 | sbt.version=1.11.6 -------------------------------------------------------------------------------- /tests/export-as-namespace/check-3/a/angular/project/plugins.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/export-as-namespace/check-3/a/angular/project/plugins.sbt -------------------------------------------------------------------------------- /tests/export-as-namespace/check-3/a/angular/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/export-as-namespace/check-3/a/angular/readme.md -------------------------------------------------------------------------------- /tests/export-as-namespace/check-3/s/std/build.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/export-as-namespace/check-3/s/std/build.sbt -------------------------------------------------------------------------------- /tests/export-as-namespace/check-3/s/std/project/build.properties: -------------------------------------------------------------------------------- 1 | sbt.version=1.11.6 -------------------------------------------------------------------------------- /tests/export-as-namespace/check-3/s/std/project/plugins.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/export-as-namespace/check-3/s/std/project/plugins.sbt -------------------------------------------------------------------------------- /tests/export-as-namespace/check-3/s/std/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/export-as-namespace/check-3/s/std/readme.md -------------------------------------------------------------------------------- /tests/export-as-namespace/in/angular-agility/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/export-as-namespace/in/angular-agility/index.d.ts -------------------------------------------------------------------------------- /tests/export-as-namespace/in/angular-agility/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/export-as-namespace/in/angular-agility/tsconfig.json -------------------------------------------------------------------------------- /tests/export-as-namespace/in/angular/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/export-as-namespace/in/angular/index.d.ts -------------------------------------------------------------------------------- /tests/export-as-namespace/in/angular/jqlite.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/export-as-namespace/in/angular/jqlite.d.ts -------------------------------------------------------------------------------- /tests/export-as-namespace/in/stdlib.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/export-as-namespace/in/stdlib.d.ts -------------------------------------------------------------------------------- /tests/firebase-admin/check-3/f/firebase-admin/build.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/firebase-admin/check-3/f/firebase-admin/build.sbt -------------------------------------------------------------------------------- /tests/firebase-admin/check-3/f/firebase-admin/project/build.properties: -------------------------------------------------------------------------------- 1 | sbt.version=1.11.6 -------------------------------------------------------------------------------- /tests/firebase-admin/check-3/f/firebase-admin/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/firebase-admin/check-3/f/firebase-admin/readme.md -------------------------------------------------------------------------------- /tests/firebase-admin/check-3/g/google-cloud__firestore/build.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/firebase-admin/check-3/g/google-cloud__firestore/build.sbt -------------------------------------------------------------------------------- /tests/firebase-admin/check-3/g/google-cloud__firestore/project/build.properties: -------------------------------------------------------------------------------- 1 | sbt.version=1.11.6 -------------------------------------------------------------------------------- /tests/firebase-admin/check-3/g/google-cloud__firestore/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/firebase-admin/check-3/g/google-cloud__firestore/readme.md -------------------------------------------------------------------------------- /tests/firebase-admin/in/@google-cloud/firestore/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/firebase-admin/in/@google-cloud/firestore/package.json -------------------------------------------------------------------------------- /tests/firebase-admin/in/firebase-admin/lib/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/firebase-admin/in/firebase-admin/lib/index.d.ts -------------------------------------------------------------------------------- /tests/firebase-admin/in/firebase-admin/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/firebase-admin/in/firebase-admin/package.json -------------------------------------------------------------------------------- /tests/firebase-admin/in/stdlib.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/firebase-admin/in/stdlib.d.ts -------------------------------------------------------------------------------- /tests/firebase/check-3/f/firebase/build.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/firebase/check-3/f/firebase/build.sbt -------------------------------------------------------------------------------- /tests/firebase/check-3/f/firebase/project/build.properties: -------------------------------------------------------------------------------- 1 | sbt.version=1.11.6 -------------------------------------------------------------------------------- /tests/firebase/check-3/f/firebase/project/plugins.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/firebase/check-3/f/firebase/project/plugins.sbt -------------------------------------------------------------------------------- /tests/firebase/check-3/f/firebase/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/firebase/check-3/f/firebase/readme.md -------------------------------------------------------------------------------- /tests/firebase/in/firebase/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/firebase/in/firebase/index.d.ts -------------------------------------------------------------------------------- /tests/firebase/in/stdlib.d.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fp-ts/check-3/f/fp-ts/build.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/fp-ts/check-3/f/fp-ts/build.sbt -------------------------------------------------------------------------------- /tests/fp-ts/check-3/f/fp-ts/project/build.properties: -------------------------------------------------------------------------------- 1 | sbt.version=1.11.6 -------------------------------------------------------------------------------- /tests/fp-ts/check-3/f/fp-ts/project/plugins.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/fp-ts/check-3/f/fp-ts/project/plugins.sbt -------------------------------------------------------------------------------- /tests/fp-ts/check-3/f/fp-ts/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/fp-ts/check-3/f/fp-ts/readme.md -------------------------------------------------------------------------------- /tests/fp-ts/check-3/f/fp-ts/src/main/resources/NPM_DEPENDENCIES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/fp-ts/check-3/f/fp-ts/src/main/resources/NPM_DEPENDENCIES -------------------------------------------------------------------------------- /tests/fp-ts/in/fp-ts/lib/Const.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/fp-ts/in/fp-ts/lib/Const.d.ts -------------------------------------------------------------------------------- /tests/fp-ts/in/fp-ts/lib/Either.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/fp-ts/in/fp-ts/lib/Either.d.ts -------------------------------------------------------------------------------- /tests/fp-ts/in/fp-ts/lib/EitherT.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/fp-ts/in/fp-ts/lib/EitherT.d.ts -------------------------------------------------------------------------------- /tests/fp-ts/in/fp-ts/lib/HKT.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/fp-ts/in/fp-ts/lib/HKT.d.ts -------------------------------------------------------------------------------- /tests/fp-ts/in/fp-ts/lib/Task.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/fp-ts/in/fp-ts/lib/Task.d.ts -------------------------------------------------------------------------------- /tests/fp-ts/in/fp-ts/lib/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/fp-ts/in/fp-ts/lib/index.d.ts -------------------------------------------------------------------------------- /tests/fp-ts/in/fp-ts/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/fp-ts/in/fp-ts/package.json -------------------------------------------------------------------------------- /tests/fp-ts/in/stdlib.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | 3 | interface Promise {} 4 | -------------------------------------------------------------------------------- /tests/fullcalendar/check-3/f/fullcalendar/build.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/fullcalendar/check-3/f/fullcalendar/build.sbt -------------------------------------------------------------------------------- /tests/fullcalendar/check-3/f/fullcalendar/project/build.properties: -------------------------------------------------------------------------------- 1 | sbt.version=1.11.6 -------------------------------------------------------------------------------- /tests/fullcalendar/check-3/f/fullcalendar/project/plugins.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/fullcalendar/check-3/f/fullcalendar/project/plugins.sbt -------------------------------------------------------------------------------- /tests/fullcalendar/check-3/f/fullcalendar/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/fullcalendar/check-3/f/fullcalendar/readme.md -------------------------------------------------------------------------------- /tests/fullcalendar/in/fullcalendar/fullcalendar.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/fullcalendar/in/fullcalendar/fullcalendar.d.ts -------------------------------------------------------------------------------- /tests/fullcalendar/in/stdlib.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | 3 | interface Array {} -------------------------------------------------------------------------------- /tests/insight/check-3/i/insight/build.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/insight/check-3/i/insight/build.sbt -------------------------------------------------------------------------------- /tests/insight/check-3/i/insight/project/build.properties: -------------------------------------------------------------------------------- 1 | sbt.version=1.11.6 -------------------------------------------------------------------------------- /tests/insight/check-3/i/insight/project/plugins.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/insight/check-3/i/insight/project/plugins.sbt -------------------------------------------------------------------------------- /tests/insight/check-3/i/insight/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/insight/check-3/i/insight/readme.md -------------------------------------------------------------------------------- /tests/insight/in/insight/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/insight/in/insight/index.d.ts -------------------------------------------------------------------------------- /tests/insight/in/stdlib.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | 3 | interface Array{} 4 | -------------------------------------------------------------------------------- /tests/interface-package/check-3/i/interface-package/build.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/interface-package/check-3/i/interface-package/build.sbt -------------------------------------------------------------------------------- /tests/interface-package/check-3/i/interface-package/project/build.properties: -------------------------------------------------------------------------------- 1 | sbt.version=1.11.6 -------------------------------------------------------------------------------- /tests/interface-package/check-3/i/interface-package/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/interface-package/check-3/i/interface-package/readme.md -------------------------------------------------------------------------------- /tests/interface-package/in/interface-package/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/interface-package/in/interface-package/index.d.ts -------------------------------------------------------------------------------- /tests/interface-package/in/stdlib.d.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/keyof/check-3/k/keyof/build.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/keyof/check-3/k/keyof/build.sbt -------------------------------------------------------------------------------- /tests/keyof/check-3/k/keyof/project/build.properties: -------------------------------------------------------------------------------- 1 | sbt.version=1.11.6 -------------------------------------------------------------------------------- /tests/keyof/check-3/k/keyof/project/plugins.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/keyof/check-3/k/keyof/project/plugins.sbt -------------------------------------------------------------------------------- /tests/keyof/check-3/k/keyof/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/keyof/check-3/k/keyof/readme.md -------------------------------------------------------------------------------- /tests/keyof/check-3/k/keyof/src/main/scala/typings/keyof/A.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/keyof/check-3/k/keyof/src/main/scala/typings/keyof/A.scala -------------------------------------------------------------------------------- /tests/keyof/check-3/k/keyof/src/main/scala/typings/keyof/B.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/keyof/check-3/k/keyof/src/main/scala/typings/keyof/B.scala -------------------------------------------------------------------------------- /tests/keyof/in/keyof/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/keyof/in/keyof/index.d.ts -------------------------------------------------------------------------------- /tests/keyof/in/stdlib.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/keyof/in/stdlib.d.ts -------------------------------------------------------------------------------- /tests/material-ui/check-japgolly-3/m/material-ui/build.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/material-ui/check-japgolly-3/m/material-ui/build.sbt -------------------------------------------------------------------------------- /tests/material-ui/check-japgolly-3/m/material-ui/project/build.properties: -------------------------------------------------------------------------------- 1 | sbt.version=1.11.6 -------------------------------------------------------------------------------- /tests/material-ui/check-japgolly-3/m/material-ui/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/material-ui/check-japgolly-3/m/material-ui/readme.md -------------------------------------------------------------------------------- /tests/material-ui/check-japgolly-3/r/react/build.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/material-ui/check-japgolly-3/r/react/build.sbt -------------------------------------------------------------------------------- /tests/material-ui/check-japgolly-3/r/react/project/build.properties: -------------------------------------------------------------------------------- 1 | sbt.version=1.11.6 -------------------------------------------------------------------------------- /tests/material-ui/check-japgolly-3/r/react/project/plugins.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/material-ui/check-japgolly-3/r/react/project/plugins.sbt -------------------------------------------------------------------------------- /tests/material-ui/check-japgolly-3/r/react/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/material-ui/check-japgolly-3/r/react/readme.md -------------------------------------------------------------------------------- /tests/material-ui/check-japgolly-3/s/std/build.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/material-ui/check-japgolly-3/s/std/build.sbt -------------------------------------------------------------------------------- /tests/material-ui/check-japgolly-3/s/std/project/build.properties: -------------------------------------------------------------------------------- 1 | sbt.version=1.11.6 -------------------------------------------------------------------------------- /tests/material-ui/check-japgolly-3/s/std/project/plugins.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/material-ui/check-japgolly-3/s/std/project/plugins.sbt -------------------------------------------------------------------------------- /tests/material-ui/check-japgolly-3/s/std/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/material-ui/check-japgolly-3/s/std/readme.md -------------------------------------------------------------------------------- /tests/material-ui/check-japgolly/m/material-ui/build.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/material-ui/check-japgolly/m/material-ui/build.sbt -------------------------------------------------------------------------------- /tests/material-ui/check-slinky-3/m/material-ui/build.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/material-ui/check-slinky-3/m/material-ui/build.sbt -------------------------------------------------------------------------------- /tests/material-ui/check-slinky-3/m/material-ui/project/build.properties: -------------------------------------------------------------------------------- 1 | sbt.version=1.11.6 -------------------------------------------------------------------------------- /tests/material-ui/check-slinky-3/m/material-ui/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/material-ui/check-slinky-3/m/material-ui/readme.md -------------------------------------------------------------------------------- /tests/material-ui/check-slinky-3/r/react/build.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/material-ui/check-slinky-3/r/react/build.sbt -------------------------------------------------------------------------------- /tests/material-ui/check-slinky-3/r/react/project/build.properties: -------------------------------------------------------------------------------- 1 | sbt.version=1.11.6 -------------------------------------------------------------------------------- /tests/material-ui/check-slinky-3/r/react/project/plugins.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/material-ui/check-slinky-3/r/react/project/plugins.sbt -------------------------------------------------------------------------------- /tests/material-ui/check-slinky-3/r/react/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/material-ui/check-slinky-3/r/react/readme.md -------------------------------------------------------------------------------- /tests/material-ui/check-slinky-3/s/std/build.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/material-ui/check-slinky-3/s/std/build.sbt -------------------------------------------------------------------------------- /tests/material-ui/check-slinky-3/s/std/project/build.properties: -------------------------------------------------------------------------------- 1 | sbt.version=1.11.6 -------------------------------------------------------------------------------- /tests/material-ui/check-slinky-3/s/std/project/plugins.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/material-ui/check-slinky-3/s/std/project/plugins.sbt -------------------------------------------------------------------------------- /tests/material-ui/check-slinky-3/s/std/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/material-ui/check-slinky-3/s/std/readme.md -------------------------------------------------------------------------------- /tests/material-ui/in/material-ui/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/material-ui/in/material-ui/index.d.ts -------------------------------------------------------------------------------- /tests/material-ui/in/material-ui/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/material-ui/in/material-ui/tsconfig.json -------------------------------------------------------------------------------- /tests/material-ui/in/react/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/material-ui/in/react/index.d.ts -------------------------------------------------------------------------------- /tests/material-ui/in/react/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/material-ui/in/react/tsconfig.json -------------------------------------------------------------------------------- /tests/material-ui/in/react/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/material-ui/in/react/tslint.json -------------------------------------------------------------------------------- /tests/material-ui/in/stdlib.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/material-ui/in/stdlib.d.ts -------------------------------------------------------------------------------- /tests/monaco-editor/check-3/m/monaco-editor/build.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/monaco-editor/check-3/m/monaco-editor/build.sbt -------------------------------------------------------------------------------- /tests/monaco-editor/check-3/m/monaco-editor/project/build.properties: -------------------------------------------------------------------------------- 1 | sbt.version=1.11.6 -------------------------------------------------------------------------------- /tests/monaco-editor/check-3/m/monaco-editor/project/plugins.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/monaco-editor/check-3/m/monaco-editor/project/plugins.sbt -------------------------------------------------------------------------------- /tests/monaco-editor/check-3/m/monaco-editor/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/monaco-editor/check-3/m/monaco-editor/readme.md -------------------------------------------------------------------------------- /tests/monaco-editor/check-3/s/std/build.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/monaco-editor/check-3/s/std/build.sbt -------------------------------------------------------------------------------- /tests/monaco-editor/check-3/s/std/project/build.properties: -------------------------------------------------------------------------------- 1 | sbt.version=1.11.6 -------------------------------------------------------------------------------- /tests/monaco-editor/check-3/s/std/project/plugins.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/monaco-editor/check-3/s/std/project/plugins.sbt -------------------------------------------------------------------------------- /tests/monaco-editor/check-3/s/std/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/monaco-editor/check-3/s/std/readme.md -------------------------------------------------------------------------------- /tests/monaco-editor/in/monaco-editor/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/monaco-editor/in/monaco-editor/index.d.ts -------------------------------------------------------------------------------- /tests/monaco-editor/in/stdlib.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/monaco-editor/in/stdlib.d.ts -------------------------------------------------------------------------------- /tests/mongoose-simple-random/check-3/m/mongoose-simple-random/project/build.properties: -------------------------------------------------------------------------------- 1 | sbt.version=1.11.6 -------------------------------------------------------------------------------- /tests/mongoose-simple-random/check-3/m/mongoose/build.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/mongoose-simple-random/check-3/m/mongoose/build.sbt -------------------------------------------------------------------------------- /tests/mongoose-simple-random/check-3/m/mongoose/project/build.properties: -------------------------------------------------------------------------------- 1 | sbt.version=1.11.6 -------------------------------------------------------------------------------- /tests/mongoose-simple-random/check-3/m/mongoose/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/mongoose-simple-random/check-3/m/mongoose/readme.md -------------------------------------------------------------------------------- /tests/mongoose-simple-random/check-3/n/node/build.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/mongoose-simple-random/check-3/n/node/build.sbt -------------------------------------------------------------------------------- /tests/mongoose-simple-random/check-3/n/node/project/build.properties: -------------------------------------------------------------------------------- 1 | sbt.version=1.11.6 -------------------------------------------------------------------------------- /tests/mongoose-simple-random/check-3/n/node/project/plugins.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/mongoose-simple-random/check-3/n/node/project/plugins.sbt -------------------------------------------------------------------------------- /tests/mongoose-simple-random/check-3/n/node/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/mongoose-simple-random/check-3/n/node/readme.md -------------------------------------------------------------------------------- /tests/mongoose-simple-random/check-3/s/std/build.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/mongoose-simple-random/check-3/s/std/build.sbt -------------------------------------------------------------------------------- /tests/mongoose-simple-random/check-3/s/std/project/build.properties: -------------------------------------------------------------------------------- 1 | sbt.version=1.11.6 -------------------------------------------------------------------------------- /tests/mongoose-simple-random/check-3/s/std/project/plugins.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/mongoose-simple-random/check-3/s/std/project/plugins.sbt -------------------------------------------------------------------------------- /tests/mongoose-simple-random/check-3/s/std/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/mongoose-simple-random/check-3/s/std/readme.md -------------------------------------------------------------------------------- /tests/mongoose-simple-random/in/mongoose/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/mongoose-simple-random/in/mongoose/index.d.ts -------------------------------------------------------------------------------- /tests/mongoose-simple-random/in/node/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/mongoose-simple-random/in/node/index.d.ts -------------------------------------------------------------------------------- /tests/mongoose-simple-random/in/stdlib.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/mongoose-simple-random/in/stdlib.d.ts -------------------------------------------------------------------------------- /tests/numjs/check-3/n/ndarray/build.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/numjs/check-3/n/ndarray/build.sbt -------------------------------------------------------------------------------- /tests/numjs/check-3/n/ndarray/project/build.properties: -------------------------------------------------------------------------------- 1 | sbt.version=1.11.6 -------------------------------------------------------------------------------- /tests/numjs/check-3/n/ndarray/project/plugins.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/numjs/check-3/n/ndarray/project/plugins.sbt -------------------------------------------------------------------------------- /tests/numjs/check-3/n/ndarray/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/numjs/check-3/n/ndarray/readme.md -------------------------------------------------------------------------------- /tests/numjs/check-3/n/numjs/build.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/numjs/check-3/n/numjs/build.sbt -------------------------------------------------------------------------------- /tests/numjs/check-3/n/numjs/project/build.properties: -------------------------------------------------------------------------------- 1 | sbt.version=1.11.6 -------------------------------------------------------------------------------- /tests/numjs/check-3/n/numjs/project/plugins.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/numjs/check-3/n/numjs/project/plugins.sbt -------------------------------------------------------------------------------- /tests/numjs/check-3/n/numjs/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/numjs/check-3/n/numjs/readme.md -------------------------------------------------------------------------------- /tests/numjs/check-3/s/std/build.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/numjs/check-3/s/std/build.sbt -------------------------------------------------------------------------------- /tests/numjs/check-3/s/std/project/build.properties: -------------------------------------------------------------------------------- 1 | sbt.version=1.11.6 -------------------------------------------------------------------------------- /tests/numjs/check-3/s/std/project/plugins.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/numjs/check-3/s/std/project/plugins.sbt -------------------------------------------------------------------------------- /tests/numjs/check-3/s/std/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/numjs/check-3/s/std/readme.md -------------------------------------------------------------------------------- /tests/numjs/check-3/s/std/src/main/scala/typings/std/Array.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/numjs/check-3/s/std/src/main/scala/typings/std/Array.scala -------------------------------------------------------------------------------- /tests/numjs/in/ndarray/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/numjs/in/ndarray/index.d.ts -------------------------------------------------------------------------------- /tests/numjs/in/numjs/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/numjs/in/numjs/index.d.ts -------------------------------------------------------------------------------- /tests/numjs/in/stdlib.d.ts: -------------------------------------------------------------------------------- 1 | declare interface Array { 2 | 3 | } -------------------------------------------------------------------------------- /tests/pixi.js/check-3/e/eventemitter3/build.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/pixi.js/check-3/e/eventemitter3/build.sbt -------------------------------------------------------------------------------- /tests/pixi.js/check-3/e/eventemitter3/project/build.properties: -------------------------------------------------------------------------------- 1 | sbt.version=1.11.6 -------------------------------------------------------------------------------- /tests/pixi.js/check-3/e/eventemitter3/project/plugins.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/pixi.js/check-3/e/eventemitter3/project/plugins.sbt -------------------------------------------------------------------------------- /tests/pixi.js/check-3/e/eventemitter3/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/pixi.js/check-3/e/eventemitter3/readme.md -------------------------------------------------------------------------------- /tests/pixi.js/check-3/p/pixi__utils/build.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/pixi.js/check-3/p/pixi__utils/build.sbt -------------------------------------------------------------------------------- /tests/pixi.js/check-3/p/pixi__utils/project/build.properties: -------------------------------------------------------------------------------- 1 | sbt.version=1.11.6 -------------------------------------------------------------------------------- /tests/pixi.js/check-3/p/pixi__utils/project/plugins.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/pixi.js/check-3/p/pixi__utils/project/plugins.sbt -------------------------------------------------------------------------------- /tests/pixi.js/check-3/p/pixi__utils/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/pixi.js/check-3/p/pixi__utils/readme.md -------------------------------------------------------------------------------- /tests/pixi.js/check-3/p/pixi_dot_js/build.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/pixi.js/check-3/p/pixi_dot_js/build.sbt -------------------------------------------------------------------------------- /tests/pixi.js/check-3/p/pixi_dot_js/project/build.properties: -------------------------------------------------------------------------------- 1 | sbt.version=1.11.6 -------------------------------------------------------------------------------- /tests/pixi.js/check-3/p/pixi_dot_js/project/plugins.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/pixi.js/check-3/p/pixi_dot_js/project/plugins.sbt -------------------------------------------------------------------------------- /tests/pixi.js/check-3/p/pixi_dot_js/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/pixi.js/check-3/p/pixi_dot_js/readme.md -------------------------------------------------------------------------------- /tests/pixi.js/in/@pixi/utils/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/pixi.js/in/@pixi/utils/index.d.ts -------------------------------------------------------------------------------- /tests/pixi.js/in/eventemitter3/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/pixi.js/in/eventemitter3/index.d.ts -------------------------------------------------------------------------------- /tests/pixi.js/in/pixi.js/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/pixi.js/in/pixi.js/index.d.ts -------------------------------------------------------------------------------- /tests/pixi.js/in/stdlib.d.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/prisma/check-3/p/prisma/build.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/prisma/check-3/p/prisma/build.sbt -------------------------------------------------------------------------------- /tests/prisma/check-3/p/prisma/project/build.properties: -------------------------------------------------------------------------------- 1 | sbt.version=1.11.6 -------------------------------------------------------------------------------- /tests/prisma/check-3/p/prisma/project/plugins.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/prisma/check-3/p/prisma/project/plugins.sbt -------------------------------------------------------------------------------- /tests/prisma/check-3/p/prisma/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/prisma/check-3/p/prisma/readme.md -------------------------------------------------------------------------------- /tests/prisma/check-3/s/std/build.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/prisma/check-3/s/std/build.sbt -------------------------------------------------------------------------------- /tests/prisma/check-3/s/std/project/build.properties: -------------------------------------------------------------------------------- 1 | sbt.version=1.11.6 -------------------------------------------------------------------------------- /tests/prisma/check-3/s/std/project/plugins.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/prisma/check-3/s/std/project/plugins.sbt -------------------------------------------------------------------------------- /tests/prisma/check-3/s/std/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/prisma/check-3/s/std/readme.md -------------------------------------------------------------------------------- /tests/prisma/in/prisma/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/prisma/in/prisma/index.d.ts -------------------------------------------------------------------------------- /tests/prisma/in/stdlib.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/prisma/in/stdlib.d.ts -------------------------------------------------------------------------------- /tests/properties/check-3/p/properties/build.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/properties/check-3/p/properties/build.sbt -------------------------------------------------------------------------------- /tests/properties/check-3/p/properties/project/build.properties: -------------------------------------------------------------------------------- 1 | sbt.version=1.11.6 -------------------------------------------------------------------------------- /tests/properties/check-3/p/properties/project/plugins.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/properties/check-3/p/properties/project/plugins.sbt -------------------------------------------------------------------------------- /tests/properties/check-3/p/properties/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/properties/check-3/p/properties/readme.md -------------------------------------------------------------------------------- /tests/properties/in/properties/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/properties/in/properties/index.d.ts -------------------------------------------------------------------------------- /tests/properties/in/stdlib.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/properties/in/stdlib.d.ts -------------------------------------------------------------------------------- /tests/punchcard/check-3/p/punchcard/build.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/punchcard/check-3/p/punchcard/build.sbt -------------------------------------------------------------------------------- /tests/punchcard/check-3/p/punchcard/project/build.properties: -------------------------------------------------------------------------------- 1 | sbt.version=1.11.6 -------------------------------------------------------------------------------- /tests/punchcard/check-3/p/punchcard/project/plugins.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/punchcard/check-3/p/punchcard/project/plugins.sbt -------------------------------------------------------------------------------- /tests/punchcard/check-3/p/punchcard/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/punchcard/check-3/p/punchcard/readme.md -------------------------------------------------------------------------------- /tests/punchcard/check-3/s/std/build.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/punchcard/check-3/s/std/build.sbt -------------------------------------------------------------------------------- /tests/punchcard/check-3/s/std/project/build.properties: -------------------------------------------------------------------------------- 1 | sbt.version=1.11.6 -------------------------------------------------------------------------------- /tests/punchcard/check-3/s/std/project/plugins.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/punchcard/check-3/s/std/project/plugins.sbt -------------------------------------------------------------------------------- /tests/punchcard/check-3/s/std/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/punchcard/check-3/s/std/readme.md -------------------------------------------------------------------------------- /tests/punchcard/check/p/punchcard/build.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/punchcard/check/p/punchcard/build.sbt -------------------------------------------------------------------------------- /tests/punchcard/check/p/punchcard/project/build.properties: -------------------------------------------------------------------------------- 1 | sbt.version=1.5.5 -------------------------------------------------------------------------------- /tests/punchcard/check/p/punchcard/project/plugins.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/punchcard/check/p/punchcard/project/plugins.sbt -------------------------------------------------------------------------------- /tests/punchcard/check/p/punchcard/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/punchcard/check/p/punchcard/readme.md -------------------------------------------------------------------------------- /tests/punchcard/check/s/std/build.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/punchcard/check/s/std/build.sbt -------------------------------------------------------------------------------- /tests/punchcard/check/s/std/project/build.properties: -------------------------------------------------------------------------------- 1 | sbt.version=1.5.5 -------------------------------------------------------------------------------- /tests/punchcard/check/s/std/project/plugins.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/punchcard/check/s/std/project/plugins.sbt -------------------------------------------------------------------------------- /tests/punchcard/check/s/std/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/punchcard/check/s/std/readme.md -------------------------------------------------------------------------------- /tests/punchcard/in/punchcard/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/punchcard/in/punchcard/index.d.ts -------------------------------------------------------------------------------- /tests/punchcard/in/stdlib.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/punchcard/in/stdlib.d.ts -------------------------------------------------------------------------------- /tests/react-icons/check-3/r/react-icon-base/build.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/react-icons/check-3/r/react-icon-base/build.sbt -------------------------------------------------------------------------------- /tests/react-icons/check-3/r/react-icon-base/project/build.properties: -------------------------------------------------------------------------------- 1 | sbt.version=1.11.6 -------------------------------------------------------------------------------- /tests/react-icons/check-3/r/react-icon-base/project/plugins.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/react-icons/check-3/r/react-icon-base/project/plugins.sbt -------------------------------------------------------------------------------- /tests/react-icons/check-3/r/react-icon-base/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/react-icons/check-3/r/react-icon-base/readme.md -------------------------------------------------------------------------------- /tests/react-icons/check-3/r/react-icons/build.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/react-icons/check-3/r/react-icons/build.sbt -------------------------------------------------------------------------------- /tests/react-icons/check-3/r/react-icons/project/build.properties: -------------------------------------------------------------------------------- 1 | sbt.version=1.11.6 -------------------------------------------------------------------------------- /tests/react-icons/check-3/r/react-icons/project/plugins.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/react-icons/check-3/r/react-icons/project/plugins.sbt -------------------------------------------------------------------------------- /tests/react-icons/check-3/r/react-icons/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/react-icons/check-3/r/react-icons/readme.md -------------------------------------------------------------------------------- /tests/react-icons/check-3/r/react/build.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/react-icons/check-3/r/react/build.sbt -------------------------------------------------------------------------------- /tests/react-icons/check-3/r/react/project/build.properties: -------------------------------------------------------------------------------- 1 | sbt.version=1.11.6 -------------------------------------------------------------------------------- /tests/react-icons/check-3/r/react/project/plugins.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/react-icons/check-3/r/react/project/plugins.sbt -------------------------------------------------------------------------------- /tests/react-icons/check-3/r/react/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/react-icons/check-3/r/react/readme.md -------------------------------------------------------------------------------- /tests/react-icons/check-3/s/std/build.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/react-icons/check-3/s/std/build.sbt -------------------------------------------------------------------------------- /tests/react-icons/check-3/s/std/project/build.properties: -------------------------------------------------------------------------------- 1 | sbt.version=1.11.6 -------------------------------------------------------------------------------- /tests/react-icons/check-3/s/std/project/plugins.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/react-icons/check-3/s/std/project/plugins.sbt -------------------------------------------------------------------------------- /tests/react-icons/check-3/s/std/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/react-icons/check-3/s/std/readme.md -------------------------------------------------------------------------------- /tests/react-icons/in/react-icon-base/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/react-icons/in/react-icon-base/index.d.ts -------------------------------------------------------------------------------- /tests/react-icons/in/react-icon-base/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/react-icons/in/react-icon-base/tsconfig.json -------------------------------------------------------------------------------- /tests/react-icons/in/react-icon-base/tslint.json: -------------------------------------------------------------------------------- 1 | { "extends": "dtslint/dt.json" } 2 | -------------------------------------------------------------------------------- /tests/react-icons/in/react-icons/fa/500px.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/react-icons/in/react-icons/fa/500px.d.ts -------------------------------------------------------------------------------- /tests/react-icons/in/react-icons/fa/adjust.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/react-icons/in/react-icons/fa/adjust.d.ts -------------------------------------------------------------------------------- /tests/react-icons/in/react-icons/fa/adn.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/react-icons/in/react-icons/fa/adn.d.ts -------------------------------------------------------------------------------- /tests/react-icons/in/react-icons/fa/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/react-icons/in/react-icons/fa/index.d.ts -------------------------------------------------------------------------------- /tests/react-icons/in/react-icons/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/react-icons/in/react-icons/index.d.ts -------------------------------------------------------------------------------- /tests/react-icons/in/react-icons/react-icons-tests.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/react-icons/in/react-icons/react-icons-tests.tsx -------------------------------------------------------------------------------- /tests/react-icons/in/react-icons/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/react-icons/in/react-icons/tsconfig.json -------------------------------------------------------------------------------- /tests/react-icons/in/react-icons/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/react-icons/in/react-icons/tslint.json -------------------------------------------------------------------------------- /tests/react-icons/in/react/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/react-icons/in/react/index.d.ts -------------------------------------------------------------------------------- /tests/react-icons/in/react/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/react-icons/in/react/tsconfig.json -------------------------------------------------------------------------------- /tests/react-icons/in/react/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/react-icons/in/react/tslint.json -------------------------------------------------------------------------------- /tests/react-icons/in/stdlib.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/react-icons/in/stdlib.d.ts -------------------------------------------------------------------------------- /tests/react-integration-test/check-japgolly-3/c/componentstest/project/build.properties: -------------------------------------------------------------------------------- 1 | sbt.version=1.11.6 -------------------------------------------------------------------------------- /tests/react-integration-test/check-japgolly-3/r/react-bootstrap/project/build.properties: -------------------------------------------------------------------------------- 1 | sbt.version=1.11.6 -------------------------------------------------------------------------------- /tests/react-integration-test/check-japgolly-3/r/react-contextmenu/project/build.properties: -------------------------------------------------------------------------------- 1 | sbt.version=1.11.6 -------------------------------------------------------------------------------- /tests/react-integration-test/check-japgolly-3/r/react-dropzone/project/build.properties: -------------------------------------------------------------------------------- 1 | sbt.version=1.11.6 -------------------------------------------------------------------------------- /tests/react-integration-test/check-japgolly-3/r/react-markdown/project/build.properties: -------------------------------------------------------------------------------- 1 | sbt.version=1.11.6 -------------------------------------------------------------------------------- /tests/react-integration-test/check-japgolly-3/r/react-native/project/build.properties: -------------------------------------------------------------------------------- 1 | sbt.version=1.11.6 -------------------------------------------------------------------------------- /tests/react-integration-test/check-japgolly-3/r/react-select/project/build.properties: -------------------------------------------------------------------------------- 1 | sbt.version=1.11.6 -------------------------------------------------------------------------------- /tests/react-integration-test/check-japgolly-3/r/react/build.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/react-integration-test/check-japgolly-3/r/react/build.sbt -------------------------------------------------------------------------------- /tests/react-integration-test/check-japgolly-3/r/react/project/build.properties: -------------------------------------------------------------------------------- 1 | sbt.version=1.11.6 -------------------------------------------------------------------------------- /tests/react-integration-test/check-japgolly-3/r/react/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/react-integration-test/check-japgolly-3/r/react/readme.md -------------------------------------------------------------------------------- /tests/react-integration-test/check-japgolly-3/s/semantic-ui-react/project/build.properties: -------------------------------------------------------------------------------- 1 | sbt.version=1.11.6 -------------------------------------------------------------------------------- /tests/react-integration-test/check-japgolly-3/s/stardust-ui__react-component-event-listener/project/build.properties: -------------------------------------------------------------------------------- 1 | sbt.version=1.11.6 -------------------------------------------------------------------------------- /tests/react-integration-test/check-japgolly-3/s/stardust-ui__react-component-ref/project/build.properties: -------------------------------------------------------------------------------- 1 | sbt.version=1.11.6 -------------------------------------------------------------------------------- /tests/react-integration-test/check-japgolly-3/s/std/build.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/react-integration-test/check-japgolly-3/s/std/build.sbt -------------------------------------------------------------------------------- /tests/react-integration-test/check-japgolly-3/s/std/project/build.properties: -------------------------------------------------------------------------------- 1 | sbt.version=1.11.6 -------------------------------------------------------------------------------- /tests/react-integration-test/check-japgolly-3/s/std/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/react-integration-test/check-japgolly-3/s/std/readme.md -------------------------------------------------------------------------------- /tests/react-integration-test/check-slinky-3/c/componentstest/project/build.properties: -------------------------------------------------------------------------------- 1 | sbt.version=1.11.6 -------------------------------------------------------------------------------- /tests/react-integration-test/check-slinky-3/r/react-bootstrap/project/build.properties: -------------------------------------------------------------------------------- 1 | sbt.version=1.11.6 -------------------------------------------------------------------------------- /tests/react-integration-test/check-slinky-3/r/react-contextmenu/project/build.properties: -------------------------------------------------------------------------------- 1 | sbt.version=1.11.6 -------------------------------------------------------------------------------- /tests/react-integration-test/check-slinky-3/r/react-dropzone/project/build.properties: -------------------------------------------------------------------------------- 1 | sbt.version=1.11.6 -------------------------------------------------------------------------------- /tests/react-integration-test/check-slinky-3/r/react-markdown/project/build.properties: -------------------------------------------------------------------------------- 1 | sbt.version=1.11.6 -------------------------------------------------------------------------------- /tests/react-integration-test/check-slinky-3/r/react-native/project/build.properties: -------------------------------------------------------------------------------- 1 | sbt.version=1.11.6 -------------------------------------------------------------------------------- /tests/react-integration-test/check-slinky-3/r/react-select/project/build.properties: -------------------------------------------------------------------------------- 1 | sbt.version=1.11.6 -------------------------------------------------------------------------------- /tests/react-integration-test/check-slinky-3/r/react/build.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/react-integration-test/check-slinky-3/r/react/build.sbt -------------------------------------------------------------------------------- /tests/react-integration-test/check-slinky-3/r/react/project/build.properties: -------------------------------------------------------------------------------- 1 | sbt.version=1.11.6 -------------------------------------------------------------------------------- /tests/react-integration-test/check-slinky-3/r/react/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/react-integration-test/check-slinky-3/r/react/readme.md -------------------------------------------------------------------------------- /tests/react-integration-test/check-slinky-3/s/semantic-ui-react/project/build.properties: -------------------------------------------------------------------------------- 1 | sbt.version=1.11.6 -------------------------------------------------------------------------------- /tests/react-integration-test/check-slinky-3/s/stardust-ui__react-component-event-listener/project/build.properties: -------------------------------------------------------------------------------- 1 | sbt.version=1.11.6 -------------------------------------------------------------------------------- /tests/react-integration-test/check-slinky-3/s/stardust-ui__react-component-ref/project/build.properties: -------------------------------------------------------------------------------- 1 | sbt.version=1.11.6 -------------------------------------------------------------------------------- /tests/react-integration-test/check-slinky-3/s/std/build.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/react-integration-test/check-slinky-3/s/std/build.sbt -------------------------------------------------------------------------------- /tests/react-integration-test/check-slinky-3/s/std/project/build.properties: -------------------------------------------------------------------------------- 1 | sbt.version=1.11.6 -------------------------------------------------------------------------------- /tests/react-integration-test/check-slinky-3/s/std/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/react-integration-test/check-slinky-3/s/std/readme.md -------------------------------------------------------------------------------- /tests/react-integration-test/in/componentstest/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/react-integration-test/in/componentstest/index.d.ts -------------------------------------------------------------------------------- /tests/react-integration-test/in/react-bootstrap/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/react-integration-test/in/react-bootstrap/index.d.ts -------------------------------------------------------------------------------- /tests/react-integration-test/in/react-bootstrap/lib/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/react-integration-test/in/react-bootstrap/lib/index.d.ts -------------------------------------------------------------------------------- /tests/react-integration-test/in/react-bootstrap/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/react-integration-test/in/react-bootstrap/tsconfig.json -------------------------------------------------------------------------------- /tests/react-integration-test/in/react-contextmenu/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/react-integration-test/in/react-contextmenu/package.json -------------------------------------------------------------------------------- /tests/react-integration-test/in/react-contextmenu/src/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/react-integration-test/in/react-contextmenu/src/index.d.ts -------------------------------------------------------------------------------- /tests/react-integration-test/in/react-dropzone/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/react-integration-test/in/react-dropzone/package.json -------------------------------------------------------------------------------- /tests/react-integration-test/in/react-markdown/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/react-integration-test/in/react-markdown/index.d.ts -------------------------------------------------------------------------------- /tests/react-integration-test/in/react-native/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/react-integration-test/in/react-native/index.d.ts -------------------------------------------------------------------------------- /tests/react-integration-test/in/react-select/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/react-integration-test/in/react-select/index.d.ts -------------------------------------------------------------------------------- /tests/react-integration-test/in/react/global.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/react-integration-test/in/react/global.d.ts -------------------------------------------------------------------------------- /tests/react-integration-test/in/react/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/react-integration-test/in/react/index.d.ts -------------------------------------------------------------------------------- /tests/react-integration-test/in/react/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/react-integration-test/in/react/package.json -------------------------------------------------------------------------------- /tests/react-integration-test/in/stdlib.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/react-integration-test/in/stdlib.d.ts -------------------------------------------------------------------------------- /tests/react-transition-group/check-japgolly-3/r/react-transition-group/project/build.properties: -------------------------------------------------------------------------------- 1 | sbt.version=1.11.6 -------------------------------------------------------------------------------- /tests/react-transition-group/check-japgolly-3/r/react/build.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/react-transition-group/check-japgolly-3/r/react/build.sbt -------------------------------------------------------------------------------- /tests/react-transition-group/check-japgolly-3/r/react/project/build.properties: -------------------------------------------------------------------------------- 1 | sbt.version=1.11.6 -------------------------------------------------------------------------------- /tests/react-transition-group/check-japgolly-3/r/react/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/react-transition-group/check-japgolly-3/r/react/readme.md -------------------------------------------------------------------------------- /tests/react-transition-group/check-japgolly-3/s/std/build.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/react-transition-group/check-japgolly-3/s/std/build.sbt -------------------------------------------------------------------------------- /tests/react-transition-group/check-japgolly-3/s/std/project/build.properties: -------------------------------------------------------------------------------- 1 | sbt.version=1.11.6 -------------------------------------------------------------------------------- /tests/react-transition-group/check-japgolly-3/s/std/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/react-transition-group/check-japgolly-3/s/std/readme.md -------------------------------------------------------------------------------- /tests/react-transition-group/check-slinky-3/r/react-transition-group/project/build.properties: -------------------------------------------------------------------------------- 1 | sbt.version=1.11.6 -------------------------------------------------------------------------------- /tests/react-transition-group/check-slinky-3/r/react/build.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/react-transition-group/check-slinky-3/r/react/build.sbt -------------------------------------------------------------------------------- /tests/react-transition-group/check-slinky-3/r/react/project/build.properties: -------------------------------------------------------------------------------- 1 | sbt.version=1.11.6 -------------------------------------------------------------------------------- /tests/react-transition-group/check-slinky-3/r/react/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/react-transition-group/check-slinky-3/r/react/readme.md -------------------------------------------------------------------------------- /tests/react-transition-group/check-slinky-3/s/std/build.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/react-transition-group/check-slinky-3/s/std/build.sbt -------------------------------------------------------------------------------- /tests/react-transition-group/check-slinky-3/s/std/project/build.properties: -------------------------------------------------------------------------------- 1 | sbt.version=1.11.6 -------------------------------------------------------------------------------- /tests/react-transition-group/check-slinky-3/s/std/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/react-transition-group/check-slinky-3/s/std/readme.md -------------------------------------------------------------------------------- /tests/react-transition-group/in/react-transition-group/tslint.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "dtslint/dt.json" 3 | } 4 | -------------------------------------------------------------------------------- /tests/react-transition-group/in/react/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/react-transition-group/in/react/index.d.ts -------------------------------------------------------------------------------- /tests/react-transition-group/in/react/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/react-transition-group/in/react/tsconfig.json -------------------------------------------------------------------------------- /tests/react-transition-group/in/react/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/react-transition-group/in/react/tslint.json -------------------------------------------------------------------------------- /tests/react-transition-group/in/stdlib.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/react-transition-group/in/stdlib.d.ts -------------------------------------------------------------------------------- /tests/recharts/check-3/r/recharts/build.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/recharts/check-3/r/recharts/build.sbt -------------------------------------------------------------------------------- /tests/recharts/check-3/r/recharts/project/build.properties: -------------------------------------------------------------------------------- 1 | sbt.version=1.11.6 -------------------------------------------------------------------------------- /tests/recharts/check-3/r/recharts/project/plugins.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/recharts/check-3/r/recharts/project/plugins.sbt -------------------------------------------------------------------------------- /tests/recharts/check-3/r/recharts/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/recharts/check-3/r/recharts/readme.md -------------------------------------------------------------------------------- /tests/recharts/check/r/recharts/build.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/recharts/check/r/recharts/build.sbt -------------------------------------------------------------------------------- /tests/recharts/check/r/recharts/project/build.properties: -------------------------------------------------------------------------------- 1 | sbt.version=1.5.5 -------------------------------------------------------------------------------- /tests/recharts/check/r/recharts/project/plugins.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/recharts/check/r/recharts/project/plugins.sbt -------------------------------------------------------------------------------- /tests/recharts/check/r/recharts/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/recharts/check/r/recharts/readme.md -------------------------------------------------------------------------------- /tests/recharts/in/recharts/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/recharts/in/recharts/index.d.ts -------------------------------------------------------------------------------- /tests/recharts/in/stdlib.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /tests/rxjs/check-3/r/rxjs/build.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/rxjs/check-3/r/rxjs/build.sbt -------------------------------------------------------------------------------- /tests/rxjs/check-3/r/rxjs/project/build.properties: -------------------------------------------------------------------------------- 1 | sbt.version=1.11.6 -------------------------------------------------------------------------------- /tests/rxjs/check-3/r/rxjs/project/plugins.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/rxjs/check-3/r/rxjs/project/plugins.sbt -------------------------------------------------------------------------------- /tests/rxjs/check-3/r/rxjs/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/rxjs/check-3/r/rxjs/readme.md -------------------------------------------------------------------------------- /tests/rxjs/in/rxjs/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/rxjs/in/rxjs/index.d.ts -------------------------------------------------------------------------------- /tests/rxjs/in/rxjs/internal/Observable.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/rxjs/in/rxjs/internal/Observable.d.ts -------------------------------------------------------------------------------- /tests/rxjs/in/rxjs/internal/Subscription.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/rxjs/in/rxjs/internal/Subscription.d.ts -------------------------------------------------------------------------------- /tests/rxjs/in/rxjs/internal/types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/rxjs/in/rxjs/internal/types.d.ts -------------------------------------------------------------------------------- /tests/rxjs/in/stdlib.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/rxjs/in/stdlib.d.ts -------------------------------------------------------------------------------- /tests/sax/check-3/n/node/build.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/sax/check-3/n/node/build.sbt -------------------------------------------------------------------------------- /tests/sax/check-3/n/node/project/build.properties: -------------------------------------------------------------------------------- 1 | sbt.version=1.11.6 -------------------------------------------------------------------------------- /tests/sax/check-3/n/node/project/plugins.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/sax/check-3/n/node/project/plugins.sbt -------------------------------------------------------------------------------- /tests/sax/check-3/n/node/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/sax/check-3/n/node/readme.md -------------------------------------------------------------------------------- /tests/sax/check-3/n/node/src/main/resources/NPM_DEPENDENCIES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/sax/check-3/n/node/src/main/resources/NPM_DEPENDENCIES -------------------------------------------------------------------------------- /tests/sax/check-3/s/sax/build.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/sax/check-3/s/sax/build.sbt -------------------------------------------------------------------------------- /tests/sax/check-3/s/sax/project/build.properties: -------------------------------------------------------------------------------- 1 | sbt.version=1.11.6 -------------------------------------------------------------------------------- /tests/sax/check-3/s/sax/project/plugins.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/sax/check-3/s/sax/project/plugins.sbt -------------------------------------------------------------------------------- /tests/sax/check-3/s/sax/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/sax/check-3/s/sax/readme.md -------------------------------------------------------------------------------- /tests/sax/check-3/s/sax/src/main/resources/NPM_DEPENDENCIES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/sax/check-3/s/sax/src/main/resources/NPM_DEPENDENCIES -------------------------------------------------------------------------------- /tests/sax/check-3/s/sax/src/main/scala/typings/sax/mod.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/sax/check-3/s/sax/src/main/scala/typings/sax/mod.scala -------------------------------------------------------------------------------- /tests/sax/check-3/s/std/build.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/sax/check-3/s/std/build.sbt -------------------------------------------------------------------------------- /tests/sax/check-3/s/std/project/build.properties: -------------------------------------------------------------------------------- 1 | sbt.version=1.11.6 -------------------------------------------------------------------------------- /tests/sax/check-3/s/std/project/plugins.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/sax/check-3/s/std/project/plugins.sbt -------------------------------------------------------------------------------- /tests/sax/check-3/s/std/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/sax/check-3/s/std/readme.md -------------------------------------------------------------------------------- /tests/sax/check-3/s/std/src/main/scala/typings/std/Array.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/sax/check-3/s/std/src/main/scala/typings/std/Array.scala -------------------------------------------------------------------------------- /tests/sax/in/node/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/sax/in/node/index.d.ts -------------------------------------------------------------------------------- /tests/sax/in/node/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/sax/in/node/tsconfig.json -------------------------------------------------------------------------------- /tests/sax/in/node/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/sax/in/node/tslint.json -------------------------------------------------------------------------------- /tests/sax/in/sax/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/sax/in/sax/index.d.ts -------------------------------------------------------------------------------- /tests/sax/in/sax/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/sax/in/sax/tsconfig.json -------------------------------------------------------------------------------- /tests/sax/in/sax/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/sax/in/sax/tslint.json -------------------------------------------------------------------------------- /tests/sax/in/stdlib.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/sax/in/stdlib.d.ts -------------------------------------------------------------------------------- /tests/serve-static/check-3/e/express-serve-static-core/project/build.properties: -------------------------------------------------------------------------------- 1 | sbt.version=1.11.6 -------------------------------------------------------------------------------- /tests/serve-static/check-3/m/mime/build.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/serve-static/check-3/m/mime/build.sbt -------------------------------------------------------------------------------- /tests/serve-static/check-3/m/mime/project/build.properties: -------------------------------------------------------------------------------- 1 | sbt.version=1.11.6 -------------------------------------------------------------------------------- /tests/serve-static/check-3/m/mime/project/plugins.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/serve-static/check-3/m/mime/project/plugins.sbt -------------------------------------------------------------------------------- /tests/serve-static/check-3/m/mime/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/serve-static/check-3/m/mime/readme.md -------------------------------------------------------------------------------- /tests/serve-static/check-3/s/serve-static/build.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/serve-static/check-3/s/serve-static/build.sbt -------------------------------------------------------------------------------- /tests/serve-static/check-3/s/serve-static/project/build.properties: -------------------------------------------------------------------------------- 1 | sbt.version=1.11.6 -------------------------------------------------------------------------------- /tests/serve-static/check-3/s/serve-static/project/plugins.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/serve-static/check-3/s/serve-static/project/plugins.sbt -------------------------------------------------------------------------------- /tests/serve-static/check-3/s/serve-static/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/serve-static/check-3/s/serve-static/readme.md -------------------------------------------------------------------------------- /tests/serve-static/check-3/s/std/build.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/serve-static/check-3/s/std/build.sbt -------------------------------------------------------------------------------- /tests/serve-static/check-3/s/std/project/build.properties: -------------------------------------------------------------------------------- 1 | sbt.version=1.11.6 -------------------------------------------------------------------------------- /tests/serve-static/check-3/s/std/project/plugins.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/serve-static/check-3/s/std/project/plugins.sbt -------------------------------------------------------------------------------- /tests/serve-static/check-3/s/std/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/serve-static/check-3/s/std/readme.md -------------------------------------------------------------------------------- /tests/serve-static/in/express-serve-static-core/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/serve-static/in/express-serve-static-core/index.d.ts -------------------------------------------------------------------------------- /tests/serve-static/in/express-serve-static-core/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/serve-static/in/express-serve-static-core/tsconfig.json -------------------------------------------------------------------------------- /tests/serve-static/in/express-serve-static-core/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/serve-static/in/express-serve-static-core/tslint.json -------------------------------------------------------------------------------- /tests/serve-static/in/mime/Mime.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/serve-static/in/mime/Mime.d.ts -------------------------------------------------------------------------------- /tests/serve-static/in/mime/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/serve-static/in/mime/index.d.ts -------------------------------------------------------------------------------- /tests/serve-static/in/mime/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/serve-static/in/mime/tsconfig.json -------------------------------------------------------------------------------- /tests/serve-static/in/mime/tslint.json: -------------------------------------------------------------------------------- 1 | { "extends": "dtslint/dt.json" } 2 | -------------------------------------------------------------------------------- /tests/serve-static/in/serve-static/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/serve-static/in/serve-static/index.d.ts -------------------------------------------------------------------------------- /tests/serve-static/in/serve-static/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/serve-static/in/serve-static/tsconfig.json -------------------------------------------------------------------------------- /tests/serve-static/in/serve-static/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/serve-static/in/serve-static/tslint.json -------------------------------------------------------------------------------- /tests/serve-static/in/stdlib.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | 3 | interface Array {} 4 | -------------------------------------------------------------------------------- /tests/stylis/check-3/s/std/build.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/stylis/check-3/s/std/build.sbt -------------------------------------------------------------------------------- /tests/stylis/check-3/s/std/project/build.properties: -------------------------------------------------------------------------------- 1 | sbt.version=1.11.6 -------------------------------------------------------------------------------- /tests/stylis/check-3/s/std/project/plugins.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/stylis/check-3/s/std/project/plugins.sbt -------------------------------------------------------------------------------- /tests/stylis/check-3/s/std/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/stylis/check-3/s/std/readme.md -------------------------------------------------------------------------------- /tests/stylis/check-3/s/stylis/build.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/stylis/check-3/s/stylis/build.sbt -------------------------------------------------------------------------------- /tests/stylis/check-3/s/stylis/project/build.properties: -------------------------------------------------------------------------------- 1 | sbt.version=1.11.6 -------------------------------------------------------------------------------- /tests/stylis/check-3/s/stylis/project/plugins.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/stylis/check-3/s/stylis/project/plugins.sbt -------------------------------------------------------------------------------- /tests/stylis/check-3/s/stylis/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/stylis/check-3/s/stylis/readme.md -------------------------------------------------------------------------------- /tests/stylis/in/stdlib.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | 3 | interface Array {} -------------------------------------------------------------------------------- /tests/stylis/in/stylis/stylis.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/stylis/in/stylis/stylis.d.ts -------------------------------------------------------------------------------- /tests/stylis/in/stylis/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/stylis/in/stylis/test.ts -------------------------------------------------------------------------------- /tests/swiz/check-3/s/std/build.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/swiz/check-3/s/std/build.sbt -------------------------------------------------------------------------------- /tests/swiz/check-3/s/std/project/build.properties: -------------------------------------------------------------------------------- 1 | sbt.version=1.11.6 -------------------------------------------------------------------------------- /tests/swiz/check-3/s/std/project/plugins.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/swiz/check-3/s/std/project/plugins.sbt -------------------------------------------------------------------------------- /tests/swiz/check-3/s/std/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/swiz/check-3/s/std/readme.md -------------------------------------------------------------------------------- /tests/swiz/check-3/s/swiz/build.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/swiz/check-3/s/swiz/build.sbt -------------------------------------------------------------------------------- /tests/swiz/check-3/s/swiz/project/build.properties: -------------------------------------------------------------------------------- 1 | sbt.version=1.11.6 -------------------------------------------------------------------------------- /tests/swiz/check-3/s/swiz/project/plugins.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/swiz/check-3/s/swiz/project/plugins.sbt -------------------------------------------------------------------------------- /tests/swiz/check-3/s/swiz/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/swiz/check-3/s/swiz/readme.md -------------------------------------------------------------------------------- /tests/swiz/in/stdlib.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | 3 | interface Array {} -------------------------------------------------------------------------------- /tests/swiz/in/swiz/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/swiz/in/swiz/index.d.ts -------------------------------------------------------------------------------- /tests/swiz/in/swiz/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/swiz/in/swiz/tsconfig.json -------------------------------------------------------------------------------- /tests/tstl/check-3/t/tstl/build.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/tstl/check-3/t/tstl/build.sbt -------------------------------------------------------------------------------- /tests/tstl/check-3/t/tstl/project/build.properties: -------------------------------------------------------------------------------- 1 | sbt.version=1.11.6 -------------------------------------------------------------------------------- /tests/tstl/check-3/t/tstl/project/plugins.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/tstl/check-3/t/tstl/project/plugins.sbt -------------------------------------------------------------------------------- /tests/tstl/check-3/t/tstl/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/tstl/check-3/t/tstl/readme.md -------------------------------------------------------------------------------- /tests/tstl/in/stdlib.d.ts: -------------------------------------------------------------------------------- 1 | interface foo { 2 | 3 | } -------------------------------------------------------------------------------- /tests/tstl/in/tstl/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/tstl/in/tstl/index.d.ts -------------------------------------------------------------------------------- /tests/type-mappings/check-3/s/std/build.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/type-mappings/check-3/s/std/build.sbt -------------------------------------------------------------------------------- /tests/type-mappings/check-3/s/std/project/build.properties: -------------------------------------------------------------------------------- 1 | sbt.version=1.11.6 -------------------------------------------------------------------------------- /tests/type-mappings/check-3/s/std/project/plugins.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/type-mappings/check-3/s/std/project/plugins.sbt -------------------------------------------------------------------------------- /tests/type-mappings/check-3/s/std/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/type-mappings/check-3/s/std/readme.md -------------------------------------------------------------------------------- /tests/type-mappings/check-3/t/type-mappings/build.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/type-mappings/check-3/t/type-mappings/build.sbt -------------------------------------------------------------------------------- /tests/type-mappings/check-3/t/type-mappings/project/build.properties: -------------------------------------------------------------------------------- 1 | sbt.version=1.11.6 -------------------------------------------------------------------------------- /tests/type-mappings/check-3/t/type-mappings/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/type-mappings/check-3/t/type-mappings/readme.md -------------------------------------------------------------------------------- /tests/type-mappings/in/stdlib.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/type-mappings/in/stdlib.d.ts -------------------------------------------------------------------------------- /tests/type-mappings/in/type-mappings/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/type-mappings/in/type-mappings/index.d.ts -------------------------------------------------------------------------------- /tests/typings-json/check-3/p/phaser/build.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/typings-json/check-3/p/phaser/build.sbt -------------------------------------------------------------------------------- /tests/typings-json/check-3/p/phaser/project/build.properties: -------------------------------------------------------------------------------- 1 | sbt.version=1.11.6 -------------------------------------------------------------------------------- /tests/typings-json/check-3/p/phaser/project/plugins.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/typings-json/check-3/p/phaser/project/plugins.sbt -------------------------------------------------------------------------------- /tests/typings-json/check-3/p/phaser/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/typings-json/check-3/p/phaser/readme.md -------------------------------------------------------------------------------- /tests/typings-json/check-3/s/std/build.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/typings-json/check-3/s/std/build.sbt -------------------------------------------------------------------------------- /tests/typings-json/check-3/s/std/project/build.properties: -------------------------------------------------------------------------------- 1 | sbt.version=1.11.6 -------------------------------------------------------------------------------- /tests/typings-json/check-3/s/std/project/plugins.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/typings-json/check-3/s/std/project/plugins.sbt -------------------------------------------------------------------------------- /tests/typings-json/check-3/s/std/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/typings-json/check-3/s/std/readme.md -------------------------------------------------------------------------------- /tests/typings-json/in/phaser/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/typings-json/in/phaser/package.json -------------------------------------------------------------------------------- /tests/typings-json/in/phaser/typescript/p2.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/typings-json/in/phaser/typescript/p2.d.ts -------------------------------------------------------------------------------- /tests/typings-json/in/phaser/typescript/phaser.comments.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/typings-json/in/phaser/typescript/phaser.comments.d.ts -------------------------------------------------------------------------------- /tests/typings-json/in/phaser/typescript/pixi.comments.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/typings-json/in/phaser/typescript/pixi.comments.d.ts -------------------------------------------------------------------------------- /tests/typings-json/in/phaser/typescript/typings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/typings-json/in/phaser/typescript/typings.json -------------------------------------------------------------------------------- /tests/typings-json/in/stdlib.d.ts: -------------------------------------------------------------------------------- 1 | interface Array { 2 | 3 | } -------------------------------------------------------------------------------- /tests/union-to-inheritance/check-3/s/std/build.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/union-to-inheritance/check-3/s/std/build.sbt -------------------------------------------------------------------------------- /tests/union-to-inheritance/check-3/s/std/project/build.properties: -------------------------------------------------------------------------------- 1 | sbt.version=1.11.6 -------------------------------------------------------------------------------- /tests/union-to-inheritance/check-3/s/std/project/plugins.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/union-to-inheritance/check-3/s/std/project/plugins.sbt -------------------------------------------------------------------------------- /tests/union-to-inheritance/check-3/s/std/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/union-to-inheritance/check-3/s/std/readme.md -------------------------------------------------------------------------------- /tests/union-to-inheritance/check-3/u/union-to-inheritance/project/build.properties: -------------------------------------------------------------------------------- 1 | sbt.version=1.11.6 -------------------------------------------------------------------------------- /tests/union-to-inheritance/in/stdlib.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/union-to-inheritance/in/stdlib.d.ts -------------------------------------------------------------------------------- /tests/union-to-inheritance/in/union-to-inheritance/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/union-to-inheritance/in/union-to-inheritance/index.d.ts -------------------------------------------------------------------------------- /tests/union-type-alias-to-interfaces/in/stdlib.d.ts: -------------------------------------------------------------------------------- 1 | interface Array {} 2 | -------------------------------------------------------------------------------- /tests/vfile/check-3/s/std/build.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/vfile/check-3/s/std/build.sbt -------------------------------------------------------------------------------- /tests/vfile/check-3/s/std/project/build.properties: -------------------------------------------------------------------------------- 1 | sbt.version=1.11.6 -------------------------------------------------------------------------------- /tests/vfile/check-3/s/std/project/plugins.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/vfile/check-3/s/std/project/plugins.sbt -------------------------------------------------------------------------------- /tests/vfile/check-3/s/std/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/vfile/check-3/s/std/readme.md -------------------------------------------------------------------------------- /tests/vfile/check-3/v/vfile/build.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/vfile/check-3/v/vfile/build.sbt -------------------------------------------------------------------------------- /tests/vfile/check-3/v/vfile/project/build.properties: -------------------------------------------------------------------------------- 1 | sbt.version=1.11.6 -------------------------------------------------------------------------------- /tests/vfile/check-3/v/vfile/project/plugins.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/vfile/check-3/v/vfile/project/plugins.sbt -------------------------------------------------------------------------------- /tests/vfile/check-3/v/vfile/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/vfile/check-3/v/vfile/readme.md -------------------------------------------------------------------------------- /tests/vfile/in/stdlib.d.ts: -------------------------------------------------------------------------------- 1 | interface Uint8Array {} 2 | -------------------------------------------------------------------------------- /tests/vfile/in/vfile/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/vfile/in/vfile/index.d.ts -------------------------------------------------------------------------------- /tests/virtual-dom/check-3/v/virtual-dom/build.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/virtual-dom/check-3/v/virtual-dom/build.sbt -------------------------------------------------------------------------------- /tests/virtual-dom/check-3/v/virtual-dom/project/build.properties: -------------------------------------------------------------------------------- 1 | sbt.version=1.11.6 -------------------------------------------------------------------------------- /tests/virtual-dom/check-3/v/virtual-dom/project/plugins.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/virtual-dom/check-3/v/virtual-dom/project/plugins.sbt -------------------------------------------------------------------------------- /tests/virtual-dom/check-3/v/virtual-dom/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/virtual-dom/check-3/v/virtual-dom/readme.md -------------------------------------------------------------------------------- /tests/virtual-dom/in/stdlib.d.ts: -------------------------------------------------------------------------------- 1 | interface Array {} -------------------------------------------------------------------------------- /tests/virtual-dom/in/virtual-dom/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/virtual-dom/in/virtual-dom/index.d.ts -------------------------------------------------------------------------------- /tests/virtual-dom/in/virtual-dom/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/virtual-dom/in/virtual-dom/tsconfig.json -------------------------------------------------------------------------------- /tests/virtual-dom/in/virtual-dom/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/virtual-dom/in/virtual-dom/tslint.json -------------------------------------------------------------------------------- /tests/virtual-dom/in/virtual-dom/virtual-dom-tests.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/virtual-dom/in/virtual-dom/virtual-dom-tests.ts -------------------------------------------------------------------------------- /tests/void-elements/check-3/s/std/build.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/void-elements/check-3/s/std/build.sbt -------------------------------------------------------------------------------- /tests/void-elements/check-3/s/std/project/build.properties: -------------------------------------------------------------------------------- 1 | sbt.version=1.11.6 -------------------------------------------------------------------------------- /tests/void-elements/check-3/s/std/project/plugins.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/void-elements/check-3/s/std/project/plugins.sbt -------------------------------------------------------------------------------- /tests/void-elements/check-3/s/std/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/void-elements/check-3/s/std/readme.md -------------------------------------------------------------------------------- /tests/void-elements/check-3/v/void-elements/build.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/void-elements/check-3/v/void-elements/build.sbt -------------------------------------------------------------------------------- /tests/void-elements/check-3/v/void-elements/project/build.properties: -------------------------------------------------------------------------------- 1 | sbt.version=1.11.6 -------------------------------------------------------------------------------- /tests/void-elements/check-3/v/void-elements/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/void-elements/check-3/v/void-elements/readme.md -------------------------------------------------------------------------------- /tests/void-elements/in/stdlib.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/void-elements/in/stdlib.d.ts -------------------------------------------------------------------------------- /tests/void-elements/in/void-elements/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/void-elements/in/void-elements/index.d.ts -------------------------------------------------------------------------------- /tests/void-elements/in/void-elements/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/void-elements/in/void-elements/tsconfig.json -------------------------------------------------------------------------------- /tests/vue/check-3/n/node/build.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/vue/check-3/n/node/build.sbt -------------------------------------------------------------------------------- /tests/vue/check-3/n/node/project/build.properties: -------------------------------------------------------------------------------- 1 | sbt.version=1.11.6 -------------------------------------------------------------------------------- /tests/vue/check-3/n/node/project/plugins.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/vue/check-3/n/node/project/plugins.sbt -------------------------------------------------------------------------------- /tests/vue/check-3/n/node/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/vue/check-3/n/node/readme.md -------------------------------------------------------------------------------- /tests/vue/check-3/s/std/build.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/vue/check-3/s/std/build.sbt -------------------------------------------------------------------------------- /tests/vue/check-3/s/std/project/build.properties: -------------------------------------------------------------------------------- 1 | sbt.version=1.11.6 -------------------------------------------------------------------------------- /tests/vue/check-3/s/std/project/plugins.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/vue/check-3/s/std/project/plugins.sbt -------------------------------------------------------------------------------- /tests/vue/check-3/s/std/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/vue/check-3/s/std/readme.md -------------------------------------------------------------------------------- /tests/vue/check-3/s/std/src/main/scala/typings/std/Array.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/vue/check-3/s/std/src/main/scala/typings/std/Array.scala -------------------------------------------------------------------------------- /tests/vue/check-3/s/std/src/main/scala/typings/std/Blob.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/vue/check-3/s/std/src/main/scala/typings/std/Blob.scala -------------------------------------------------------------------------------- /tests/vue/check-3/s/std/src/main/scala/typings/std/Error.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/vue/check-3/s/std/src/main/scala/typings/std/Error.scala -------------------------------------------------------------------------------- /tests/vue/check-3/s/std/src/main/scala/typings/std/Node.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/vue/check-3/s/std/src/main/scala/typings/std/Node.scala -------------------------------------------------------------------------------- /tests/vue/check-3/s/storybook__vue/build.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/vue/check-3/s/storybook__vue/build.sbt -------------------------------------------------------------------------------- /tests/vue/check-3/s/storybook__vue/project/build.properties: -------------------------------------------------------------------------------- 1 | sbt.version=1.11.6 -------------------------------------------------------------------------------- /tests/vue/check-3/s/storybook__vue/project/plugins.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/vue/check-3/s/storybook__vue/project/plugins.sbt -------------------------------------------------------------------------------- /tests/vue/check-3/s/storybook__vue/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/vue/check-3/s/storybook__vue/readme.md -------------------------------------------------------------------------------- /tests/vue/check-3/v/vue-resource/build.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/vue/check-3/v/vue-resource/build.sbt -------------------------------------------------------------------------------- /tests/vue/check-3/v/vue-resource/project/build.properties: -------------------------------------------------------------------------------- 1 | sbt.version=1.11.6 -------------------------------------------------------------------------------- /tests/vue/check-3/v/vue-resource/project/plugins.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/vue/check-3/v/vue-resource/project/plugins.sbt -------------------------------------------------------------------------------- /tests/vue/check-3/v/vue-resource/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/vue/check-3/v/vue-resource/readme.md -------------------------------------------------------------------------------- /tests/vue/check-3/v/vue-scrollto/build.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/vue/check-3/v/vue-scrollto/build.sbt -------------------------------------------------------------------------------- /tests/vue/check-3/v/vue-scrollto/project/build.properties: -------------------------------------------------------------------------------- 1 | sbt.version=1.11.6 -------------------------------------------------------------------------------- /tests/vue/check-3/v/vue-scrollto/project/plugins.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/vue/check-3/v/vue-scrollto/project/plugins.sbt -------------------------------------------------------------------------------- /tests/vue/check-3/v/vue-scrollto/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/vue/check-3/v/vue-scrollto/readme.md -------------------------------------------------------------------------------- /tests/vue/check-3/v/vue/build.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/vue/check-3/v/vue/build.sbt -------------------------------------------------------------------------------- /tests/vue/check-3/v/vue/project/build.properties: -------------------------------------------------------------------------------- 1 | sbt.version=1.11.6 -------------------------------------------------------------------------------- /tests/vue/check-3/v/vue/project/plugins.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/vue/check-3/v/vue/project/plugins.sbt -------------------------------------------------------------------------------- /tests/vue/check-3/v/vue/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/vue/check-3/v/vue/readme.md -------------------------------------------------------------------------------- /tests/vue/check-3/v/vue/src/main/resources/NPM_DEPENDENCIES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/vue/check-3/v/vue/src/main/resources/NPM_DEPENDENCIES -------------------------------------------------------------------------------- /tests/vue/check-3/v/vue/src/main/scala/typings/vue/anon.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/vue/check-3/v/vue/src/main/scala/typings/vue/anon.scala -------------------------------------------------------------------------------- /tests/vue/check-3/v/vue/src/main/scala/typings/vue/mod.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/vue/check-3/v/vue/src/main/scala/typings/vue/mod.scala -------------------------------------------------------------------------------- /tests/vue/check-3/w/webpack-env/build.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/vue/check-3/w/webpack-env/build.sbt -------------------------------------------------------------------------------- /tests/vue/check-3/w/webpack-env/project/build.properties: -------------------------------------------------------------------------------- 1 | sbt.version=1.11.6 -------------------------------------------------------------------------------- /tests/vue/check-3/w/webpack-env/project/plugins.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/vue/check-3/w/webpack-env/project/plugins.sbt -------------------------------------------------------------------------------- /tests/vue/check-3/w/webpack-env/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/vue/check-3/w/webpack-env/readme.md -------------------------------------------------------------------------------- /tests/vue/in/node/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/vue/in/node/index.d.ts -------------------------------------------------------------------------------- /tests/vue/in/stdlib.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/vue/in/stdlib.d.ts -------------------------------------------------------------------------------- /tests/vue/in/storybook__vue/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/vue/in/storybook__vue/index.d.ts -------------------------------------------------------------------------------- /tests/vue/in/storybook__vue/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/vue/in/storybook__vue/package.json -------------------------------------------------------------------------------- /tests/vue/in/storybook__vue/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/vue/in/storybook__vue/tsconfig.json -------------------------------------------------------------------------------- /tests/vue/in/storybook__vue/tslint.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "dtslint/dt.json" 3 | } -------------------------------------------------------------------------------- /tests/vue/in/vue-resource/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/vue/in/vue-resource/index.d.ts -------------------------------------------------------------------------------- /tests/vue/in/vue-resource/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/vue/in/vue-resource/package.json -------------------------------------------------------------------------------- /tests/vue/in/vue-resource/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/vue/in/vue-resource/tsconfig.json -------------------------------------------------------------------------------- /tests/vue/in/vue-resource/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/vue/in/vue-resource/tslint.json -------------------------------------------------------------------------------- /tests/vue/in/vue-scrollto/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/vue/in/vue-scrollto/index.d.ts -------------------------------------------------------------------------------- /tests/vue/in/vue-scrollto/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/vue/in/vue-scrollto/package.json -------------------------------------------------------------------------------- /tests/vue/in/vue-scrollto/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/vue/in/vue-scrollto/tsconfig.json -------------------------------------------------------------------------------- /tests/vue/in/vue-scrollto/tslint.json: -------------------------------------------------------------------------------- 1 | { "extends": "dtslint/dt.json" } 2 | -------------------------------------------------------------------------------- /tests/vue/in/vue/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/vue/in/vue/package.json -------------------------------------------------------------------------------- /tests/vue/in/vue/types/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/vue/in/vue/types/index.d.ts -------------------------------------------------------------------------------- /tests/vue/in/vue/types/options.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/vue/in/vue/types/options.d.ts -------------------------------------------------------------------------------- /tests/vue/in/vue/types/plugin.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/vue/in/vue/types/plugin.d.ts -------------------------------------------------------------------------------- /tests/vue/in/vue/types/vnode.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/vue/in/vue/types/vnode.d.ts -------------------------------------------------------------------------------- /tests/vue/in/vue/types/vue.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/vue/in/vue/types/vue.d.ts -------------------------------------------------------------------------------- /tests/vue/in/webpack-env/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/vue/in/webpack-env/index.d.ts -------------------------------------------------------------------------------- /tests/vue/in/webpack-env/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/vue/in/webpack-env/tsconfig.json -------------------------------------------------------------------------------- /tests/vue/in/webpack-env/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/vue/in/webpack-env/tslint.json -------------------------------------------------------------------------------- /tests/winston/check-3/w/winston/build.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/winston/check-3/w/winston/build.sbt -------------------------------------------------------------------------------- /tests/winston/check-3/w/winston/project/build.properties: -------------------------------------------------------------------------------- 1 | sbt.version=1.11.6 -------------------------------------------------------------------------------- /tests/winston/check-3/w/winston/project/plugins.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/winston/check-3/w/winston/project/plugins.sbt -------------------------------------------------------------------------------- /tests/winston/check-3/w/winston/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/winston/check-3/w/winston/readme.md -------------------------------------------------------------------------------- /tests/winston/in/stdlib.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | 3 | interface Array {} 4 | -------------------------------------------------------------------------------- /tests/winston/in/winston/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/winston/in/winston/index.d.ts -------------------------------------------------------------------------------- /tests/winston/in/winston/lib/winston/config/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/winston/in/winston/lib/winston/config/index.d.ts -------------------------------------------------------------------------------- /tests/winston/in/winston/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/winston/in/winston/package.json -------------------------------------------------------------------------------- /tests/winston/in/winston/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/winston/in/winston/tsconfig.json -------------------------------------------------------------------------------- /tests/with-theme/check-3/r/react/build.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/with-theme/check-3/r/react/build.sbt -------------------------------------------------------------------------------- /tests/with-theme/check-3/r/react/project/build.properties: -------------------------------------------------------------------------------- 1 | sbt.version=1.11.6 -------------------------------------------------------------------------------- /tests/with-theme/check-3/r/react/project/plugins.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/with-theme/check-3/r/react/project/plugins.sbt -------------------------------------------------------------------------------- /tests/with-theme/check-3/r/react/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/with-theme/check-3/r/react/readme.md -------------------------------------------------------------------------------- /tests/with-theme/check-3/s/std/build.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/with-theme/check-3/s/std/build.sbt -------------------------------------------------------------------------------- /tests/with-theme/check-3/s/std/project/build.properties: -------------------------------------------------------------------------------- 1 | sbt.version=1.11.6 -------------------------------------------------------------------------------- /tests/with-theme/check-3/s/std/project/plugins.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/with-theme/check-3/s/std/project/plugins.sbt -------------------------------------------------------------------------------- /tests/with-theme/check-3/s/std/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/with-theme/check-3/s/std/readme.md -------------------------------------------------------------------------------- /tests/with-theme/check-3/w/with-theme/build.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/with-theme/check-3/w/with-theme/build.sbt -------------------------------------------------------------------------------- /tests/with-theme/check-3/w/with-theme/project/build.properties: -------------------------------------------------------------------------------- 1 | sbt.version=1.11.6 -------------------------------------------------------------------------------- /tests/with-theme/check-3/w/with-theme/project/plugins.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/with-theme/check-3/w/with-theme/project/plugins.sbt -------------------------------------------------------------------------------- /tests/with-theme/check-3/w/with-theme/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/with-theme/check-3/w/with-theme/readme.md -------------------------------------------------------------------------------- /tests/with-theme/in/react/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/with-theme/in/react/index.d.ts -------------------------------------------------------------------------------- /tests/with-theme/in/stdlib.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/with-theme/in/stdlib.d.ts -------------------------------------------------------------------------------- /tests/with-theme/in/with-theme/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/tests/with-theme/in/with-theme/index.d.ts -------------------------------------------------------------------------------- /website/.dockerignore: -------------------------------------------------------------------------------- 1 | */node_modules 2 | *.log 3 | -------------------------------------------------------------------------------- /website/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/website/.gitignore -------------------------------------------------------------------------------- /website/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/website/Dockerfile -------------------------------------------------------------------------------- /website/core/Footer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/website/core/Footer.js -------------------------------------------------------------------------------- /website/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/website/docker-compose.yml -------------------------------------------------------------------------------- /website/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/website/package.json -------------------------------------------------------------------------------- /website/pages/en/help.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/website/pages/en/help.js -------------------------------------------------------------------------------- /website/pages/en/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/website/pages/en/index.js -------------------------------------------------------------------------------- /website/pages/en/users.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/website/pages/en/users.js -------------------------------------------------------------------------------- /website/sidebars.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/website/sidebars.json -------------------------------------------------------------------------------- /website/siteConfig.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/website/siteConfig.js -------------------------------------------------------------------------------- /website/static/CNAME: -------------------------------------------------------------------------------- 1 | scalablytyped.org 2 | -------------------------------------------------------------------------------- /website/static/css/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/website/static/css/custom.css -------------------------------------------------------------------------------- /website/static/img/favicon-st1.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/website/static/img/favicon-st1.ico -------------------------------------------------------------------------------- /website/static/img/favicon-st3.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/website/static/img/favicon-st3.ico -------------------------------------------------------------------------------- /website/static/img/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/website/static/img/favicon.ico -------------------------------------------------------------------------------- /website/static/img/logo-1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/website/static/img/logo-1.svg -------------------------------------------------------------------------------- /website/static/img/logo-2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/website/static/img/logo-2.svg -------------------------------------------------------------------------------- /website/static/img/logo-3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/website/static/img/logo-3.svg -------------------------------------------------------------------------------- /website/static/img/logo-4.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/website/static/img/logo-4.svg -------------------------------------------------------------------------------- /website/static/img/logo-5.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/website/static/img/logo-5.svg -------------------------------------------------------------------------------- /website/static/img/oss_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/website/static/img/oss_logo.png -------------------------------------------------------------------------------- /website/static/img/scalablytyped.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/website/static/img/scalablytyped.svg -------------------------------------------------------------------------------- /website/static/img/undraw_code_review.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/website/static/img/undraw_code_review.svg -------------------------------------------------------------------------------- /website/static/img/undraw_note_list.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/website/static/img/undraw_note_list.svg -------------------------------------------------------------------------------- /website/static/img/undraw_online.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/website/static/img/undraw_online.svg -------------------------------------------------------------------------------- /website/static/img/undraw_open_source.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/website/static/img/undraw_open_source.svg -------------------------------------------------------------------------------- /website/static/img/undraw_operating_system.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/website/static/img/undraw_operating_system.svg -------------------------------------------------------------------------------- /website/static/img/undraw_react.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/website/static/img/undraw_react.svg -------------------------------------------------------------------------------- /website/static/img/undraw_tweetstorm.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/website/static/img/undraw_tweetstorm.svg -------------------------------------------------------------------------------- /website/static/img/undraw_youtube_tutorial.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/website/static/img/undraw_youtube_tutorial.svg -------------------------------------------------------------------------------- /website/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScalablyTyped/Converter/HEAD/website/yarn.lock --------------------------------------------------------------------------------