├── .DS_Store ├── .all-contributorsrc ├── .github ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── contributing.md ├── dependabot.yml ├── pull_request_template.md ├── semantic.yml └── workflows │ ├── automerge.yml │ ├── codeql-analysis.yml │ ├── definitely-type-check.yml │ ├── definitelyTyped.yml │ ├── dependabot-auto-approve.yml │ ├── pages.yml │ ├── performance.yml │ ├── release.yml │ └── test.yml ├── .gitignore ├── .husky └── commit-msg ├── .npmrc ├── .prettierignore ├── .prettierrc.json ├── .releaserc.json ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE.md ├── README.md ├── SECURITY.md ├── commitizen.js ├── commitlint.config.js ├── config ├── modules │ ├── base │ │ └── webpack.base.js │ ├── definitelyTypedTransformer │ │ ├── index.ts │ │ ├── tsconfig.json │ │ ├── webpack.functions.js │ │ └── webpack.js │ ├── transformer │ │ ├── index.ts │ │ ├── tsconfig.json │ │ └── webpack.js │ ├── tsconfig.json │ └── webpack.js └── utils │ └── devtool.js ├── data ├── definitelyTyped │ ├── 04367cd9-ebd6-4b6a-bcf6-37dd2aeb9bd0.json │ ├── 07e92b46-60b1-4362-b29b-1e306324ae12.json │ ├── 08a3ad12-a89d-456f-b443-724c564d6e34.json │ ├── 0ff9d703-f9c9-44b5-8cb2-92e746a0ae43.json │ ├── 112ea92a-5839-46cd-b63f-57ef17aa7c27.json │ ├── 26460ddf-ac3e-45de-84d0-40d5407ee1f5.json │ ├── 38897cd9-e0e4-4cdf-997c-97245d6858e1.json │ ├── 40d783fa-b9d4-4d7a-8fe5-42e8233990f0.json │ ├── 45e2213b-fa9c-40d1-b066-89413f063ee3.json │ ├── 46db7585-aa99-4c77-a3b2-18c802332ebe.json │ ├── 532444dd-7414-42ad-8d30-3da2d2e6c9af.json │ ├── 558115c1-a303-40a4-8eda-a54aab819061.json │ ├── 59fcd50b-ad93-43d9-8777-45cf4cb83abe.json │ ├── 6dafe6a4-fd96-4cee-a280-2ef999b957ac.json │ ├── 74a18dfb-2d47-4a6a-be93-7a111f36da64.json │ ├── 756c5f8d-be26-43fc-8831-0a12df4c972e.json │ ├── 77271276-6c31-45ee-9784-a3e7be55c1cb.json │ ├── 8320b1c6-aaba-4054-ac2e-779724e5e0c9.json │ ├── 85c573df-2a38-4a68-a947-531f50572667.json │ ├── 9749238a-cba9-4abd-9fac-f9d0d4ef90e3.json │ ├── 9b2896e5-9374-4e2f-a1d9-118bb70d4e76.json │ ├── 9bb53820-9edf-46d7-b313-792537af5039.json │ ├── 9e9c5de9-8f72-4634-ae77-b4615528f429.json │ ├── a2463f7f-ff51-4a91-8480-f2f5e698eb15.json │ ├── a4b17491-a90a-4eb8-97e7-f58c8ddbc538.json │ ├── abda7edb-675a-4750-9472-0e1f5a4ab47f.json │ ├── ad09f030-80c5-41bb-837d-7b9bcbcd63f2.json │ ├── af7d365b-2772-4be3-9fa4-5e70794c1215.json │ ├── afd54392-8c7f-4c01-ac56-b860a75aae06.json │ ├── b1cbaed9-be45-4611-a1a4-8181ad2769c4.json │ ├── b3314257-c4f3-49b1-8821-df5bcbce7fb5.json │ ├── ba98b9d5-0dd4-4fff-8059-91d1b2547ad5.json │ ├── d0c8689b-54d3-465a-967e-37b7c726dcef.json │ ├── d2217e3f-96bd-40ba-8240-a2aa872c904f.json │ ├── df442fc4-740c-476c-94c5-507336159c0e.json │ ├── e2aa024a-1fe1-4fd6-a037-82d60e49a9af.json │ ├── e6a502b2-4f6b-4bcc-8202-4018773ed455.json │ ├── f41f1790-b3b3-4d2c-942c-d6c116963da7.json │ ├── f88f1ee3-878c-41fc-8720-e1ae2707f1a3.json │ ├── fc6649de-70f6-4594-94f5-055e4412f98c.json │ ├── fd661a13-9b5a-42ec-b70e-98cabb9b91e3.json │ └── list.json └── performance.json ├── definitelyTypedTests ├── .env ├── index.js ├── package-lock.json ├── package.json ├── src │ ├── config.js │ ├── create-definitely-typed-mock.ts │ ├── definitelyTyped.js │ ├── index.ts │ ├── installTypes.js │ ├── maximiseParallel.js │ ├── multiProcessOutput.js │ ├── postProcessTypes.js │ ├── processRunner.js │ └── transformer │ │ ├── customFunctions │ │ └── create-definitely-typed-mock.ts │ │ ├── index.ts │ │ ├── logger.ts │ │ └── transformer.ts └── tsconfig.json ├── docs ├── PUBLISH.md └── slack_small.png ├── eslint.config.mjs ├── package.json ├── performance ├── README.md ├── core │ ├── exec │ │ └── execPromise.js │ ├── fs │ │ └── fileSystem.js │ └── git │ │ └── gitHelper.js ├── index.js ├── package-lock.json ├── package.json ├── performance.json ├── repository │ └── localRepository.js ├── templates │ ├── oneInterfacePerFile.ts │ ├── reuseInterface.ts │ ├── types │ │ └── interface.ts │ └── withoutTsAutoMock.ts ├── testRunner │ ├── testRunner.js │ └── typescriptRunner.js ├── tsconfig.base.json └── tsconfig │ ├── tsconfig.performance.json │ └── tsconfig.performance.notransformer.json ├── src ├── create-hydrated-mock.ts ├── create-mock-list.ts ├── create-mock.ts ├── errors │ └── no-transformer.error.ts ├── extension │ ├── extension.ts │ ├── extensionHandler.ts │ ├── index.ts │ ├── marker │ │ └── marker.ts │ ├── method │ │ ├── extensionMethod.ts │ │ ├── function.ts │ │ ├── method.ts │ │ ├── provider │ │ │ ├── functionMethod.ts │ │ │ └── provider.ts │ │ └── string.ts │ └── on │ │ └── on.ts ├── index.ts ├── logger │ ├── consoleLogger.ts │ ├── fileLogger.ts │ ├── logger.interface.ts │ ├── logger.ts │ ├── messageFormatter.ts │ └── silentLogger.ts ├── merge │ ├── index.ts │ └── merge.ts ├── options │ ├── cache.ts │ ├── debug.ts │ ├── default.ts │ ├── features.ts │ ├── files.ts │ ├── options.ts │ └── random.ts ├── partial │ ├── internal.ts │ └── partial.ts ├── random │ ├── index.ts │ └── random.ts ├── register-mock.ts ├── repository │ ├── index.ts │ └── repository.ts ├── transformer │ ├── array │ │ └── array.ts │ ├── base │ │ └── base.ts │ ├── core │ │ └── core.ts │ ├── custom-transformer.ts │ ├── customFunctions │ │ ├── create-hydrated-mock.ts │ │ ├── create-mock-list.ts │ │ ├── create-mock.ts │ │ ├── custom-functions.ts │ │ ├── helpers │ │ │ ├── assert-type-argument-presence.ts │ │ │ └── custom-function-with-type-argument.ts │ │ └── register-mock.ts │ ├── descriptor │ │ ├── array │ │ │ └── array.ts │ │ ├── bigint │ │ │ └── bigint.ts │ │ ├── boolean │ │ │ ├── boolean.ts │ │ │ ├── booleanFalse.ts │ │ │ └── booleanTrue.ts │ │ ├── callExpression │ │ │ └── callExpression.ts │ │ ├── class │ │ │ └── classDeclaration.ts │ │ ├── constructor │ │ ├── descriptor.ts │ │ ├── enum │ │ │ └── enumDeclaration.ts │ │ ├── expression │ │ │ └── expressionWithTypeArguments.ts │ │ ├── getAccessor │ │ │ └── getAccessor.ts │ │ ├── helper │ │ │ └── helper.ts │ │ ├── identifier │ │ │ └── identifier.ts │ │ ├── import │ │ │ ├── import.ts │ │ │ └── importEquals.ts │ │ ├── indexedAccess │ │ │ └── indexedAccess.ts │ │ ├── interface │ │ │ └── interfaceDeclaration.ts │ │ ├── intersection │ │ │ └── intersection.ts │ │ ├── literal │ │ │ └── literal.ts │ │ ├── mapped │ │ │ └── mapped.ts │ │ ├── method │ │ │ ├── bodyReturnType.ts │ │ │ ├── functionAssignment.ts │ │ │ ├── functionReturnType.ts │ │ │ ├── functionType.ts │ │ │ ├── method.ts │ │ │ ├── methodDeclaration.ts │ │ │ └── methodSignature.ts │ │ ├── mock │ │ │ ├── mockCall.ts │ │ │ ├── mockMarker.ts │ │ │ ├── mockProperties.ts │ │ │ ├── mockPropertiesAssignments.ts │ │ │ ├── propertyLike.ts │ │ │ └── signatureLike.ts │ │ ├── module │ │ │ └── module.ts │ │ ├── nodeJsTypes │ │ │ └── nodeJsTypes.ts │ │ ├── null │ │ │ └── null.ts │ │ ├── number │ │ │ └── number.ts │ │ ├── objectLiteral │ │ │ └── objectLiteral.ts │ │ ├── parameter │ │ │ └── parameter.ts │ │ ├── parenthesized │ │ │ └── parenthesized.ts │ │ ├── parenthesizedExpression │ │ │ └── getParenthesizedExpressionDescriptor.ts │ │ ├── properties │ │ │ └── properties.ts │ │ ├── property │ │ │ ├── cache.ts │ │ │ └── propertySignature.ts │ │ ├── random │ │ │ └── random.ts │ │ ├── shorthandPropertyAssignment │ │ │ └── shorthandPropertyAssignment.ts │ │ ├── string │ │ │ └── string.ts │ │ ├── tsLibs │ │ │ ├── typecriptLibs.ts │ │ │ └── typescriptLibsTypes.ts │ │ ├── tuple │ │ │ └── tuple.ts │ │ ├── type │ │ │ ├── type.ts │ │ │ └── typeImport.ts │ │ ├── typeAlias │ │ │ └── typeAlias.ts │ │ ├── typeLiteral │ │ │ └── typeLiteral.ts │ │ ├── typeNode │ │ │ └── convertNodeToTypeNode.ts │ │ ├── typeOperator │ │ │ └── typeOperator.ts │ │ ├── typeParameter │ │ │ └── typeParameter.ts │ │ ├── typeQuery │ │ │ ├── enumTypeQuery.ts │ │ │ └── typeQuery.ts │ │ ├── typeReference │ │ │ └── typeReference.ts │ │ ├── undefined │ │ │ └── undefined.ts │ │ ├── union │ │ │ └── union.ts │ │ └── variable │ │ │ └── variable.ts │ ├── genericDeclaration │ │ ├── genericDeclaration.interface.ts │ │ ├── genericDeclaration.ts │ │ ├── genericDeclarationSupported.ts │ │ └── genericParameter.ts │ ├── helper │ │ └── import.ts │ ├── index.ts │ ├── logger │ │ └── transformerLogger.ts │ ├── matcher │ │ └── matcher.ts │ ├── mergeExpression │ │ └── mergeExpression.ts │ ├── mock │ │ ├── currentCreateMockNode.ts │ │ └── mock.ts │ ├── mockDefiner │ │ ├── cache │ │ │ ├── declarationCache.ts │ │ │ └── declarationListCache.ts │ │ ├── factoryUniqueName.ts │ │ ├── keyCounter.ts │ │ ├── mockDefiner.ts │ │ └── modules │ │ │ ├── moduleImportIdentifierPerFile.ts │ │ │ ├── moduleName.ts │ │ │ ├── moduleNameIdentifier.ts │ │ │ └── modulesImportUrl.ts │ ├── mockFactoryCall │ │ └── mockFactoryCall.ts │ ├── mockIdentifier │ │ └── mockIdentifier.ts │ ├── printNode.ts │ ├── privateIdentifier │ │ └── privateIdentifier.ts │ ├── scope │ │ └── scope.ts │ ├── transformer.ts │ └── typeReferenceReusable │ │ └── typeReferenceReusable.ts └── typescriptFactory │ └── typescriptFactory.ts ├── test ├── build │ ├── build.test.ts │ ├── jasmine.json │ ├── tsconfig.json │ ├── tsconfig.test.json │ └── webpack.js ├── createHydratedMock │ ├── create-hydrated-mock.test.ts │ ├── jasmine.json │ └── tsconfig.json ├── features │ ├── jasmine.json │ ├── random │ │ ├── bool.test.ts │ │ ├── enum.test.ts │ │ ├── number.test.ts │ │ └── string.test.ts │ └── tsconfig.json ├── filesFilter │ ├── jasmine.json │ ├── tests │ │ ├── exclude.test.ts │ │ └── include.test.ts │ └── tsconfig.json ├── framework │ ├── config.ts │ ├── interface.ts │ ├── jasmine.json │ ├── reuse │ │ ├── reuse1.test.ts │ │ └── reuse2.test.ts │ └── tsconfig.json ├── frameworkContext │ ├── context.ts │ ├── contextDeprecated.ts │ ├── create-mock-list-values.test.ts │ ├── create-mock-list.test.ts │ ├── create-mock-values.test.ts │ ├── functions.test.ts │ ├── jasmine.json │ ├── jasmineDeprecated.json │ ├── methodExtension.test.ts │ ├── name.test.ts │ ├── on.test.ts │ ├── primitive.test.ts │ ├── propertyLiteral │ │ └── propertyLiteral.test.ts │ ├── recursive │ │ ├── recursive.test.deprecated.ts │ │ └── recursive.test.valid.ts │ ├── spy.test.ts │ ├── tsLibs │ │ └── tsLibs.test.ts │ ├── tsconfig.json │ ├── typings.test.ts │ ├── typings │ │ └── mock-definition.d.ts │ └── utils │ │ └── function.test.ts ├── logs │ ├── conditionalType.ts │ ├── createMock.warning.test.ts │ ├── createMockList.warning.test.ts │ ├── indexedAccess │ │ ├── indexedAccess.warning.test.ts │ │ └── indexedAccess.warning.type.ts │ ├── jasmine.json │ ├── keyof │ │ ├── keyof.warning.test.ts │ │ └── keyof.warning.type.ts │ ├── missingTypeDefinition │ │ ├── missingTypeDefinition.warning.test.ts │ │ └── missingTypeDefinition.warning.type.ts │ ├── tsconfig.json │ ├── untypedProperty │ │ ├── untypedProperty.warning.test.ts │ │ └── untypedProperty.warning.type.ts │ └── utils │ │ └── log.ts ├── noTransformer │ ├── jasmine.json │ └── noTransformer.test.ts ├── playground │ ├── jasmine.build.json │ ├── jasmine.json │ ├── playground.test.ts │ ├── tsconfig.build.json │ └── tsconfig.json ├── registerMock │ ├── context.ts │ ├── extensionStrategy │ │ └── extensionStrategy.test.ts │ ├── fakePromise.ts │ ├── generics │ │ └── generics.test.ts │ ├── interface │ │ └── interface.test.ts │ ├── jasmine.json │ ├── mockFromScope │ │ └── mockFromScope.ts │ ├── mockingPromise │ │ └── mockingPromise.test.ts │ ├── tsconfig.json │ ├── typeAlias │ │ └── typeAlias.test.ts │ ├── typeLiteral │ │ └── typeLiteral.test.ts │ └── typeQuery │ │ └── typeQuery.test.ts ├── reporter.js ├── transformer │ ├── context.ts │ ├── create-mock-list-values.test.ts │ ├── create-mock-list.test.ts │ ├── create-mock-values.test.ts │ ├── create-mock.test.ts │ ├── descriptor │ │ ├── assignments │ │ │ ├── assignments.test.ts │ │ │ └── assignmentsMethods.test.ts │ │ ├── basic.test.ts │ │ ├── bigint │ │ │ └── bigint.test.ts │ │ ├── classes.test.ts │ │ ├── constructor │ │ ├── declarations │ │ │ └── declarations.test.ts │ │ ├── dictionary.test.ts │ │ ├── directTypes │ │ │ └── directType.test.ts │ │ ├── enum.test.ts │ │ ├── extends.test.ts │ │ ├── extends │ │ │ ├── callExpression.test.ts │ │ │ ├── declaration.ts │ │ │ └── mappedTypes.test.ts │ │ ├── functions │ │ │ └── functionsWithoutTypes.test.ts │ │ ├── generic │ │ │ ├── default.test.ts │ │ │ ├── extends.test.ts │ │ │ ├── generic.test.ts │ │ │ ├── import.test.ts │ │ │ ├── multipleDeclaration.test.ts │ │ │ ├── null.test.ts │ │ │ └── reuse.test.ts │ │ ├── getAccessor │ │ │ └── getAccessor.test.ts │ │ ├── import │ │ │ ├── exportSpecifier.test.ts │ │ │ ├── import.test.ts │ │ │ ├── importAlias.test.ts │ │ │ ├── importClause.test.ts │ │ │ └── importEqual.test.ts │ │ ├── indexedAccess │ │ │ └── indexedAccess.test.ts │ │ ├── interface.test.ts │ │ ├── intersection │ │ │ ├── functions.test.ts │ │ │ ├── generic.test.ts │ │ │ ├── interfaceWithoutProperties.test.ts │ │ │ ├── intersection.test.ts │ │ │ ├── recursive.test.ts │ │ │ └── reuse.test.ts │ │ ├── keyin │ │ │ ├── keyin.test.ts │ │ │ └── keyinkeyof.test.ts │ │ ├── literal │ │ │ └── literal.test.ts │ │ ├── methods │ │ │ ├── methods.test.ts │ │ │ └── reservedWords.test.ts │ │ ├── namespace.test.ts │ │ ├── never │ │ │ └── never.test.ts │ │ ├── notReusable │ │ │ └── notReusable.test.ts │ │ ├── optional │ │ │ └── optional.test.ts │ │ ├── parenthesized │ │ │ ├── intersection.test.ts │ │ │ └── type.test.ts │ │ ├── properties │ │ │ ├── assignFalsy.test.ts │ │ │ ├── computed.test.ts │ │ │ ├── inferred.test.ts │ │ │ ├── literal.test.ts │ │ │ └── multipleDeclaration.test.ts │ │ ├── readonly │ │ │ └── readonly.test.ts │ │ ├── recursive │ │ │ └── recursive.test.ts │ │ ├── setAccessor │ │ │ └── setAccessor.test.ts │ │ ├── this │ │ │ └── this.test.ts │ │ ├── tsLibs │ │ │ └── tsLibs.test.ts │ │ ├── tuple │ │ │ └── tuple.test.ts │ │ ├── typeQuery │ │ │ ├── typeQuery.test.ts │ │ │ ├── typeQueryExportClasses.test.ts │ │ │ ├── typeQueryOfExports.test.ts │ │ │ └── typeQueryUndefined.test.ts │ │ ├── union │ │ │ ├── union.test.ts │ │ │ └── unionUndefined.test.ts │ │ └── utils │ │ │ ├── classes │ │ │ ├── AbstractClass.ts │ │ │ ├── EmptyClass.ts │ │ │ ├── class.ts │ │ │ └── withGenerics.ts │ │ │ ├── declarations │ │ │ ├── declaration.ts │ │ │ └── multipleDeclaration.ts │ │ │ ├── export │ │ │ ├── export.ts │ │ │ ├── exportAlias.ts │ │ │ ├── exportEqual.ts │ │ │ └── exportWithThis.ts │ │ │ ├── interfaces │ │ │ ├── anotherExportEqual.ts │ │ │ ├── basic.ts │ │ │ ├── default.ts │ │ │ ├── defaultWithThis.ts │ │ │ ├── exportDefaultDeclaration.ts │ │ │ ├── exportEqual.ts │ │ │ ├── exportEqualObject.ts │ │ │ ├── importAndExport.ts │ │ │ ├── importDefaultInterface.ts │ │ │ ├── importInterface.ts │ │ │ ├── importNameSpace.ts │ │ │ ├── importNestedInterface.ts │ │ │ ├── recursive.ts │ │ │ ├── withGenerics.ts │ │ │ └── withMethods.ts │ │ │ ├── namespace │ │ │ └── namespace.ts │ │ │ ├── object │ │ │ └── object.ts │ │ │ ├── typeQuery │ │ │ └── typeQueryUtils.ts │ │ │ └── types │ │ │ ├── literals.ts │ │ │ ├── type.ts │ │ │ ├── typeUnion.ts │ │ │ └── withGenerics.ts │ ├── identifier │ │ └── identifier.test.ts │ ├── jasmine.json │ ├── register-mock.test.ts │ ├── tsconfig.json │ └── utilities │ │ ├── class.ts │ │ ├── classWithGenerics.ts │ │ ├── create-mock.ts │ │ ├── getObjectKeyValues.ts │ │ └── withStringLiteralProperties.ts ├── tsconfig.json ├── typings │ └── index.d.ts └── unit │ ├── jasmine.json │ └── transformer │ └── array │ └── compare.test.ts ├── tsconfig.base.json ├── tsconfig.eslint.json ├── tsconfig.json ├── ui ├── .env ├── .env.development ├── .gitignore ├── _config.yml ├── doczrc.js ├── gatsby-config.js ├── gatsby-node.js ├── package-lock.json ├── package.json ├── public │ └── favicon.png ├── src │ ├── copy │ │ └── copy.ts │ ├── core │ │ ├── button │ │ │ └── button.tsx │ │ ├── data │ │ │ └── browserFileReader.ts │ │ ├── logo │ │ │ ├── logo.png │ │ │ ├── logo.tsx │ │ │ ├── logo_dark.svg │ │ │ └── logo_light.svg │ │ ├── theme │ │ │ ├── theme.ts │ │ │ └── useTheme.tsx │ │ └── useDebounce │ │ │ └── useDebounce.ts │ ├── definitely-typed │ │ ├── definitelyTyped.scss │ │ ├── definitelyTyped.styled.ts │ │ ├── definitelyTyped.tsx │ │ ├── filters │ │ │ ├── definitelyTypedFilters.scss │ │ │ ├── definitelyTypedFilters.tsx │ │ │ ├── errorPresetFilters.ts │ │ │ └── filterService.ts │ │ ├── input │ │ │ └── input.scss │ │ └── interfaces │ │ │ ├── definitelyTypedRun.interface.ts │ │ │ ├── definitelyTypedRunResponse.ts │ │ │ └── definitelyTypedTypeRun.interface.ts │ ├── gatsby-theme-docz │ │ └── wrapper.jsx │ ├── home │ │ ├── home-content │ │ │ ├── home-content.styled.ts │ │ │ └── home-content.tsx │ │ ├── home-feature │ │ │ ├── home-feature.styled.ts │ │ │ └── home-feature.tsx │ │ ├── home-footer │ │ │ ├── home-footer.styled.ts │ │ │ ├── home-footer.tsx │ │ │ └── slack_small.png │ │ └── home-header │ │ │ └── home-header.tsx │ ├── performance │ │ ├── chart │ │ │ └── chart.tsx │ │ ├── performance.styled.ts │ │ ├── performance.tsx │ │ └── performanceService │ │ │ └── performanceService.tsx │ ├── style │ │ ├── select │ │ │ └── select.styled.ts │ │ ├── text │ │ │ └── sub-header │ │ │ │ └── sub-header.style.ts │ │ └── view │ │ │ ├── centered │ │ │ ├── centered.styled.tsx │ │ │ └── centered.tsx │ │ │ ├── column │ │ │ └── column.styled.ts │ │ │ └── row │ │ │ ├── centered.row.styled.tsx │ │ │ └── row.tsx │ └── views │ │ ├── config.md │ │ ├── create-hydrated-mock.mdx │ │ ├── create-mock-list.mdx │ │ ├── create-mock.mdx │ │ ├── definitely-typed.mdx │ │ ├── extension.mdx │ │ ├── home.mdx │ │ ├── installation.mdx │ │ ├── local-development.mdx │ │ ├── performance.mdx │ │ ├── register-mock.mdx │ │ ├── types-not-supported.mdx │ │ └── types-supported.mdx └── tsconfig.json └── utils ├── dataFileSystem ├── dataFileSystemReader.d.ts ├── dataFileSystemReader.js ├── dataFileSystemWriter.d.ts ├── dataFileSystemWriter.js └── nodeFileReader.js ├── exec └── execPromise.js ├── process └── process.js └── uuid └── uuid.js /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/.DS_Store -------------------------------------------------------------------------------- /.all-contributorsrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/.all-contributorsrc -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/contributing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/.github/contributing.md -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/semantic.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/.github/semantic.yml -------------------------------------------------------------------------------- /.github/workflows/automerge.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/.github/workflows/automerge.yml -------------------------------------------------------------------------------- /.github/workflows/codeql-analysis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/.github/workflows/codeql-analysis.yml -------------------------------------------------------------------------------- /.github/workflows/definitely-type-check.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/.github/workflows/definitely-type-check.yml -------------------------------------------------------------------------------- /.github/workflows/definitelyTyped.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/.github/workflows/definitelyTyped.yml -------------------------------------------------------------------------------- /.github/workflows/dependabot-auto-approve.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/.github/workflows/dependabot-auto-approve.yml -------------------------------------------------------------------------------- /.github/workflows/pages.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/.github/workflows/pages.yml -------------------------------------------------------------------------------- /.github/workflows/performance.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/.github/workflows/performance.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/.gitignore -------------------------------------------------------------------------------- /.husky/commit-msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/.husky/commit-msg -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | engine-strict=true 2 | -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/.prettierignore -------------------------------------------------------------------------------- /.prettierrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "singleQuote": true 3 | } 4 | -------------------------------------------------------------------------------- /.releaserc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/.releaserc.json -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/SECURITY.md -------------------------------------------------------------------------------- /commitizen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/commitizen.js -------------------------------------------------------------------------------- /commitlint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/commitlint.config.js -------------------------------------------------------------------------------- /config/modules/base/webpack.base.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/config/modules/base/webpack.base.js -------------------------------------------------------------------------------- /config/modules/definitelyTypedTransformer/index.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /config/modules/definitelyTypedTransformer/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/config/modules/definitelyTypedTransformer/tsconfig.json -------------------------------------------------------------------------------- /config/modules/definitelyTypedTransformer/webpack.functions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/config/modules/definitelyTypedTransformer/webpack.functions.js -------------------------------------------------------------------------------- /config/modules/definitelyTypedTransformer/webpack.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/config/modules/definitelyTypedTransformer/webpack.js -------------------------------------------------------------------------------- /config/modules/transformer/index.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /config/modules/transformer/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/config/modules/transformer/tsconfig.json -------------------------------------------------------------------------------- /config/modules/transformer/webpack.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/config/modules/transformer/webpack.js -------------------------------------------------------------------------------- /config/modules/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/config/modules/tsconfig.json -------------------------------------------------------------------------------- /config/modules/webpack.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/config/modules/webpack.js -------------------------------------------------------------------------------- /config/utils/devtool.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/config/utils/devtool.js -------------------------------------------------------------------------------- /data/definitelyTyped/04367cd9-ebd6-4b6a-bcf6-37dd2aeb9bd0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/data/definitelyTyped/04367cd9-ebd6-4b6a-bcf6-37dd2aeb9bd0.json -------------------------------------------------------------------------------- /data/definitelyTyped/07e92b46-60b1-4362-b29b-1e306324ae12.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/data/definitelyTyped/07e92b46-60b1-4362-b29b-1e306324ae12.json -------------------------------------------------------------------------------- /data/definitelyTyped/08a3ad12-a89d-456f-b443-724c564d6e34.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/data/definitelyTyped/08a3ad12-a89d-456f-b443-724c564d6e34.json -------------------------------------------------------------------------------- /data/definitelyTyped/0ff9d703-f9c9-44b5-8cb2-92e746a0ae43.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/data/definitelyTyped/0ff9d703-f9c9-44b5-8cb2-92e746a0ae43.json -------------------------------------------------------------------------------- /data/definitelyTyped/112ea92a-5839-46cd-b63f-57ef17aa7c27.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/data/definitelyTyped/112ea92a-5839-46cd-b63f-57ef17aa7c27.json -------------------------------------------------------------------------------- /data/definitelyTyped/26460ddf-ac3e-45de-84d0-40d5407ee1f5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/data/definitelyTyped/26460ddf-ac3e-45de-84d0-40d5407ee1f5.json -------------------------------------------------------------------------------- /data/definitelyTyped/38897cd9-e0e4-4cdf-997c-97245d6858e1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/data/definitelyTyped/38897cd9-e0e4-4cdf-997c-97245d6858e1.json -------------------------------------------------------------------------------- /data/definitelyTyped/40d783fa-b9d4-4d7a-8fe5-42e8233990f0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/data/definitelyTyped/40d783fa-b9d4-4d7a-8fe5-42e8233990f0.json -------------------------------------------------------------------------------- /data/definitelyTyped/45e2213b-fa9c-40d1-b066-89413f063ee3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/data/definitelyTyped/45e2213b-fa9c-40d1-b066-89413f063ee3.json -------------------------------------------------------------------------------- /data/definitelyTyped/46db7585-aa99-4c77-a3b2-18c802332ebe.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/data/definitelyTyped/46db7585-aa99-4c77-a3b2-18c802332ebe.json -------------------------------------------------------------------------------- /data/definitelyTyped/532444dd-7414-42ad-8d30-3da2d2e6c9af.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/data/definitelyTyped/532444dd-7414-42ad-8d30-3da2d2e6c9af.json -------------------------------------------------------------------------------- /data/definitelyTyped/558115c1-a303-40a4-8eda-a54aab819061.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/data/definitelyTyped/558115c1-a303-40a4-8eda-a54aab819061.json -------------------------------------------------------------------------------- /data/definitelyTyped/59fcd50b-ad93-43d9-8777-45cf4cb83abe.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/data/definitelyTyped/59fcd50b-ad93-43d9-8777-45cf4cb83abe.json -------------------------------------------------------------------------------- /data/definitelyTyped/6dafe6a4-fd96-4cee-a280-2ef999b957ac.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/data/definitelyTyped/6dafe6a4-fd96-4cee-a280-2ef999b957ac.json -------------------------------------------------------------------------------- /data/definitelyTyped/74a18dfb-2d47-4a6a-be93-7a111f36da64.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/data/definitelyTyped/74a18dfb-2d47-4a6a-be93-7a111f36da64.json -------------------------------------------------------------------------------- /data/definitelyTyped/756c5f8d-be26-43fc-8831-0a12df4c972e.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/data/definitelyTyped/756c5f8d-be26-43fc-8831-0a12df4c972e.json -------------------------------------------------------------------------------- /data/definitelyTyped/77271276-6c31-45ee-9784-a3e7be55c1cb.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/data/definitelyTyped/77271276-6c31-45ee-9784-a3e7be55c1cb.json -------------------------------------------------------------------------------- /data/definitelyTyped/8320b1c6-aaba-4054-ac2e-779724e5e0c9.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/data/definitelyTyped/8320b1c6-aaba-4054-ac2e-779724e5e0c9.json -------------------------------------------------------------------------------- /data/definitelyTyped/85c573df-2a38-4a68-a947-531f50572667.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/data/definitelyTyped/85c573df-2a38-4a68-a947-531f50572667.json -------------------------------------------------------------------------------- /data/definitelyTyped/9749238a-cba9-4abd-9fac-f9d0d4ef90e3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/data/definitelyTyped/9749238a-cba9-4abd-9fac-f9d0d4ef90e3.json -------------------------------------------------------------------------------- /data/definitelyTyped/9b2896e5-9374-4e2f-a1d9-118bb70d4e76.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/data/definitelyTyped/9b2896e5-9374-4e2f-a1d9-118bb70d4e76.json -------------------------------------------------------------------------------- /data/definitelyTyped/9bb53820-9edf-46d7-b313-792537af5039.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/data/definitelyTyped/9bb53820-9edf-46d7-b313-792537af5039.json -------------------------------------------------------------------------------- /data/definitelyTyped/9e9c5de9-8f72-4634-ae77-b4615528f429.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/data/definitelyTyped/9e9c5de9-8f72-4634-ae77-b4615528f429.json -------------------------------------------------------------------------------- /data/definitelyTyped/a2463f7f-ff51-4a91-8480-f2f5e698eb15.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/data/definitelyTyped/a2463f7f-ff51-4a91-8480-f2f5e698eb15.json -------------------------------------------------------------------------------- /data/definitelyTyped/a4b17491-a90a-4eb8-97e7-f58c8ddbc538.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/data/definitelyTyped/a4b17491-a90a-4eb8-97e7-f58c8ddbc538.json -------------------------------------------------------------------------------- /data/definitelyTyped/abda7edb-675a-4750-9472-0e1f5a4ab47f.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/data/definitelyTyped/abda7edb-675a-4750-9472-0e1f5a4ab47f.json -------------------------------------------------------------------------------- /data/definitelyTyped/ad09f030-80c5-41bb-837d-7b9bcbcd63f2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/data/definitelyTyped/ad09f030-80c5-41bb-837d-7b9bcbcd63f2.json -------------------------------------------------------------------------------- /data/definitelyTyped/af7d365b-2772-4be3-9fa4-5e70794c1215.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/data/definitelyTyped/af7d365b-2772-4be3-9fa4-5e70794c1215.json -------------------------------------------------------------------------------- /data/definitelyTyped/afd54392-8c7f-4c01-ac56-b860a75aae06.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/data/definitelyTyped/afd54392-8c7f-4c01-ac56-b860a75aae06.json -------------------------------------------------------------------------------- /data/definitelyTyped/b1cbaed9-be45-4611-a1a4-8181ad2769c4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/data/definitelyTyped/b1cbaed9-be45-4611-a1a4-8181ad2769c4.json -------------------------------------------------------------------------------- /data/definitelyTyped/b3314257-c4f3-49b1-8821-df5bcbce7fb5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/data/definitelyTyped/b3314257-c4f3-49b1-8821-df5bcbce7fb5.json -------------------------------------------------------------------------------- /data/definitelyTyped/ba98b9d5-0dd4-4fff-8059-91d1b2547ad5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/data/definitelyTyped/ba98b9d5-0dd4-4fff-8059-91d1b2547ad5.json -------------------------------------------------------------------------------- /data/definitelyTyped/d0c8689b-54d3-465a-967e-37b7c726dcef.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/data/definitelyTyped/d0c8689b-54d3-465a-967e-37b7c726dcef.json -------------------------------------------------------------------------------- /data/definitelyTyped/d2217e3f-96bd-40ba-8240-a2aa872c904f.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/data/definitelyTyped/d2217e3f-96bd-40ba-8240-a2aa872c904f.json -------------------------------------------------------------------------------- /data/definitelyTyped/df442fc4-740c-476c-94c5-507336159c0e.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/data/definitelyTyped/df442fc4-740c-476c-94c5-507336159c0e.json -------------------------------------------------------------------------------- /data/definitelyTyped/e2aa024a-1fe1-4fd6-a037-82d60e49a9af.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/data/definitelyTyped/e2aa024a-1fe1-4fd6-a037-82d60e49a9af.json -------------------------------------------------------------------------------- /data/definitelyTyped/e6a502b2-4f6b-4bcc-8202-4018773ed455.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/data/definitelyTyped/e6a502b2-4f6b-4bcc-8202-4018773ed455.json -------------------------------------------------------------------------------- /data/definitelyTyped/f41f1790-b3b3-4d2c-942c-d6c116963da7.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/data/definitelyTyped/f41f1790-b3b3-4d2c-942c-d6c116963da7.json -------------------------------------------------------------------------------- /data/definitelyTyped/f88f1ee3-878c-41fc-8720-e1ae2707f1a3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/data/definitelyTyped/f88f1ee3-878c-41fc-8720-e1ae2707f1a3.json -------------------------------------------------------------------------------- /data/definitelyTyped/fc6649de-70f6-4594-94f5-055e4412f98c.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/data/definitelyTyped/fc6649de-70f6-4594-94f5-055e4412f98c.json -------------------------------------------------------------------------------- /data/definitelyTyped/fd661a13-9b5a-42ec-b70e-98cabb9b91e3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/data/definitelyTyped/fd661a13-9b5a-42ec-b70e-98cabb9b91e3.json -------------------------------------------------------------------------------- /data/definitelyTyped/list.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/data/definitelyTyped/list.json -------------------------------------------------------------------------------- /data/performance.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/data/performance.json -------------------------------------------------------------------------------- /definitelyTypedTests/.env: -------------------------------------------------------------------------------- 1 | DEFINITELY_TYPED_DATA_URL=../data/definitelyTyped 2 | -------------------------------------------------------------------------------- /definitelyTypedTests/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/definitelyTypedTests/index.js -------------------------------------------------------------------------------- /definitelyTypedTests/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/definitelyTypedTests/package-lock.json -------------------------------------------------------------------------------- /definitelyTypedTests/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/definitelyTypedTests/package.json -------------------------------------------------------------------------------- /definitelyTypedTests/src/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/definitelyTypedTests/src/config.js -------------------------------------------------------------------------------- /definitelyTypedTests/src/create-definitely-typed-mock.ts: -------------------------------------------------------------------------------- 1 | export declare function createDefinitelyTypedMock(): T[]; 2 | -------------------------------------------------------------------------------- /definitelyTypedTests/src/definitelyTyped.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/definitelyTypedTests/src/definitelyTyped.js -------------------------------------------------------------------------------- /definitelyTypedTests/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/definitelyTypedTests/src/index.ts -------------------------------------------------------------------------------- /definitelyTypedTests/src/installTypes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/definitelyTypedTests/src/installTypes.js -------------------------------------------------------------------------------- /definitelyTypedTests/src/maximiseParallel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/definitelyTypedTests/src/maximiseParallel.js -------------------------------------------------------------------------------- /definitelyTypedTests/src/multiProcessOutput.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/definitelyTypedTests/src/multiProcessOutput.js -------------------------------------------------------------------------------- /definitelyTypedTests/src/postProcessTypes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/definitelyTypedTests/src/postProcessTypes.js -------------------------------------------------------------------------------- /definitelyTypedTests/src/processRunner.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/definitelyTypedTests/src/processRunner.js -------------------------------------------------------------------------------- /definitelyTypedTests/src/transformer/customFunctions/create-definitely-typed-mock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/definitelyTypedTests/src/transformer/customFunctions/create-definitely-typed-mock.ts -------------------------------------------------------------------------------- /definitelyTypedTests/src/transformer/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/definitelyTypedTests/src/transformer/index.ts -------------------------------------------------------------------------------- /definitelyTypedTests/src/transformer/logger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/definitelyTypedTests/src/transformer/logger.ts -------------------------------------------------------------------------------- /definitelyTypedTests/src/transformer/transformer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/definitelyTypedTests/src/transformer/transformer.ts -------------------------------------------------------------------------------- /definitelyTypedTests/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/definitelyTypedTests/tsconfig.json -------------------------------------------------------------------------------- /docs/PUBLISH.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/docs/PUBLISH.md -------------------------------------------------------------------------------- /docs/slack_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/docs/slack_small.png -------------------------------------------------------------------------------- /eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/eslint.config.mjs -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/package.json -------------------------------------------------------------------------------- /performance/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/performance/README.md -------------------------------------------------------------------------------- /performance/core/exec/execPromise.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/performance/core/exec/execPromise.js -------------------------------------------------------------------------------- /performance/core/fs/fileSystem.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/performance/core/fs/fileSystem.js -------------------------------------------------------------------------------- /performance/core/git/gitHelper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/performance/core/git/gitHelper.js -------------------------------------------------------------------------------- /performance/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/performance/index.js -------------------------------------------------------------------------------- /performance/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/performance/package-lock.json -------------------------------------------------------------------------------- /performance/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/performance/package.json -------------------------------------------------------------------------------- /performance/performance.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/performance/performance.json -------------------------------------------------------------------------------- /performance/repository/localRepository.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/performance/repository/localRepository.js -------------------------------------------------------------------------------- /performance/templates/oneInterfacePerFile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/performance/templates/oneInterfacePerFile.ts -------------------------------------------------------------------------------- /performance/templates/reuseInterface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/performance/templates/reuseInterface.ts -------------------------------------------------------------------------------- /performance/templates/types/interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/performance/templates/types/interface.ts -------------------------------------------------------------------------------- /performance/templates/withoutTsAutoMock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/performance/templates/withoutTsAutoMock.ts -------------------------------------------------------------------------------- /performance/testRunner/testRunner.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/performance/testRunner/testRunner.js -------------------------------------------------------------------------------- /performance/testRunner/typescriptRunner.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/performance/testRunner/typescriptRunner.js -------------------------------------------------------------------------------- /performance/tsconfig.base.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/performance/tsconfig.base.json -------------------------------------------------------------------------------- /performance/tsconfig/tsconfig.performance.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/performance/tsconfig/tsconfig.performance.json -------------------------------------------------------------------------------- /performance/tsconfig/tsconfig.performance.notransformer.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "../tsconfig.base.json" 3 | } 4 | 5 | -------------------------------------------------------------------------------- /src/create-hydrated-mock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/src/create-hydrated-mock.ts -------------------------------------------------------------------------------- /src/create-mock-list.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/src/create-mock-list.ts -------------------------------------------------------------------------------- /src/create-mock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/src/create-mock.ts -------------------------------------------------------------------------------- /src/errors/no-transformer.error.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/src/errors/no-transformer.error.ts -------------------------------------------------------------------------------- /src/extension/extension.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/src/extension/extension.ts -------------------------------------------------------------------------------- /src/extension/extensionHandler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/src/extension/extensionHandler.ts -------------------------------------------------------------------------------- /src/extension/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/src/extension/index.ts -------------------------------------------------------------------------------- /src/extension/marker/marker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/src/extension/marker/marker.ts -------------------------------------------------------------------------------- /src/extension/method/extensionMethod.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/src/extension/method/extensionMethod.ts -------------------------------------------------------------------------------- /src/extension/method/function.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/src/extension/method/function.ts -------------------------------------------------------------------------------- /src/extension/method/method.ts: -------------------------------------------------------------------------------- 1 | export declare interface Method extends Function {} 2 | -------------------------------------------------------------------------------- /src/extension/method/provider/functionMethod.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/src/extension/method/provider/functionMethod.ts -------------------------------------------------------------------------------- /src/extension/method/provider/provider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/src/extension/method/provider/provider.ts -------------------------------------------------------------------------------- /src/extension/method/string.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/src/extension/method/string.ts -------------------------------------------------------------------------------- /src/extension/on/on.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/src/extension/on/on.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/logger/consoleLogger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/src/logger/consoleLogger.ts -------------------------------------------------------------------------------- /src/logger/fileLogger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/src/logger/fileLogger.ts -------------------------------------------------------------------------------- /src/logger/logger.interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/src/logger/logger.interface.ts -------------------------------------------------------------------------------- /src/logger/logger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/src/logger/logger.ts -------------------------------------------------------------------------------- /src/logger/messageFormatter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/src/logger/messageFormatter.ts -------------------------------------------------------------------------------- /src/logger/silentLogger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/src/logger/silentLogger.ts -------------------------------------------------------------------------------- /src/merge/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/src/merge/index.ts -------------------------------------------------------------------------------- /src/merge/merge.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/src/merge/merge.ts -------------------------------------------------------------------------------- /src/options/cache.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/src/options/cache.ts -------------------------------------------------------------------------------- /src/options/debug.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/src/options/debug.ts -------------------------------------------------------------------------------- /src/options/default.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/src/options/default.ts -------------------------------------------------------------------------------- /src/options/features.ts: -------------------------------------------------------------------------------- 1 | export type TsAutoMockFeaturesOption = 'random'; 2 | -------------------------------------------------------------------------------- /src/options/files.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/src/options/files.ts -------------------------------------------------------------------------------- /src/options/options.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/src/options/options.ts -------------------------------------------------------------------------------- /src/options/random.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/src/options/random.ts -------------------------------------------------------------------------------- /src/partial/internal.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/src/partial/internal.ts -------------------------------------------------------------------------------- /src/partial/partial.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/src/partial/partial.ts -------------------------------------------------------------------------------- /src/random/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/src/random/index.ts -------------------------------------------------------------------------------- /src/random/random.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/src/random/random.ts -------------------------------------------------------------------------------- /src/register-mock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/src/register-mock.ts -------------------------------------------------------------------------------- /src/repository/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/src/repository/index.ts -------------------------------------------------------------------------------- /src/repository/repository.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/src/repository/repository.ts -------------------------------------------------------------------------------- /src/transformer/array/array.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/src/transformer/array/array.ts -------------------------------------------------------------------------------- /src/transformer/base/base.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/src/transformer/base/base.ts -------------------------------------------------------------------------------- /src/transformer/core/core.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/src/transformer/core/core.ts -------------------------------------------------------------------------------- /src/transformer/custom-transformer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/src/transformer/custom-transformer.ts -------------------------------------------------------------------------------- /src/transformer/customFunctions/create-hydrated-mock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/src/transformer/customFunctions/create-hydrated-mock.ts -------------------------------------------------------------------------------- /src/transformer/customFunctions/create-mock-list.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/src/transformer/customFunctions/create-mock-list.ts -------------------------------------------------------------------------------- /src/transformer/customFunctions/create-mock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/src/transformer/customFunctions/create-mock.ts -------------------------------------------------------------------------------- /src/transformer/customFunctions/custom-functions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/src/transformer/customFunctions/custom-functions.ts -------------------------------------------------------------------------------- /src/transformer/customFunctions/helpers/assert-type-argument-presence.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/src/transformer/customFunctions/helpers/assert-type-argument-presence.ts -------------------------------------------------------------------------------- /src/transformer/customFunctions/helpers/custom-function-with-type-argument.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/src/transformer/customFunctions/helpers/custom-function-with-type-argument.ts -------------------------------------------------------------------------------- /src/transformer/customFunctions/register-mock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/src/transformer/customFunctions/register-mock.ts -------------------------------------------------------------------------------- /src/transformer/descriptor/array/array.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/src/transformer/descriptor/array/array.ts -------------------------------------------------------------------------------- /src/transformer/descriptor/bigint/bigint.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/src/transformer/descriptor/bigint/bigint.ts -------------------------------------------------------------------------------- /src/transformer/descriptor/boolean/boolean.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/src/transformer/descriptor/boolean/boolean.ts -------------------------------------------------------------------------------- /src/transformer/descriptor/boolean/booleanFalse.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/src/transformer/descriptor/boolean/booleanFalse.ts -------------------------------------------------------------------------------- /src/transformer/descriptor/boolean/booleanTrue.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/src/transformer/descriptor/boolean/booleanTrue.ts -------------------------------------------------------------------------------- /src/transformer/descriptor/callExpression/callExpression.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/src/transformer/descriptor/callExpression/callExpression.ts -------------------------------------------------------------------------------- /src/transformer/descriptor/class/classDeclaration.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/src/transformer/descriptor/class/classDeclaration.ts -------------------------------------------------------------------------------- /src/transformer/descriptor/constructor/constructorType.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/src/transformer/descriptor/constructor/constructorType.ts -------------------------------------------------------------------------------- /src/transformer/descriptor/descriptor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/src/transformer/descriptor/descriptor.ts -------------------------------------------------------------------------------- /src/transformer/descriptor/enum/enumDeclaration.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/src/transformer/descriptor/enum/enumDeclaration.ts -------------------------------------------------------------------------------- /src/transformer/descriptor/expression/expressionWithTypeArguments.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/src/transformer/descriptor/expression/expressionWithTypeArguments.ts -------------------------------------------------------------------------------- /src/transformer/descriptor/getAccessor/getAccessor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/src/transformer/descriptor/getAccessor/getAccessor.ts -------------------------------------------------------------------------------- /src/transformer/descriptor/helper/helper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/src/transformer/descriptor/helper/helper.ts -------------------------------------------------------------------------------- /src/transformer/descriptor/identifier/identifier.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/src/transformer/descriptor/identifier/identifier.ts -------------------------------------------------------------------------------- /src/transformer/descriptor/import/import.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/src/transformer/descriptor/import/import.ts -------------------------------------------------------------------------------- /src/transformer/descriptor/import/importEquals.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/src/transformer/descriptor/import/importEquals.ts -------------------------------------------------------------------------------- /src/transformer/descriptor/indexedAccess/indexedAccess.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/src/transformer/descriptor/indexedAccess/indexedAccess.ts -------------------------------------------------------------------------------- /src/transformer/descriptor/interface/interfaceDeclaration.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/src/transformer/descriptor/interface/interfaceDeclaration.ts -------------------------------------------------------------------------------- /src/transformer/descriptor/intersection/intersection.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/src/transformer/descriptor/intersection/intersection.ts -------------------------------------------------------------------------------- /src/transformer/descriptor/literal/literal.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/src/transformer/descriptor/literal/literal.ts -------------------------------------------------------------------------------- /src/transformer/descriptor/mapped/mapped.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/src/transformer/descriptor/mapped/mapped.ts -------------------------------------------------------------------------------- /src/transformer/descriptor/method/bodyReturnType.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/src/transformer/descriptor/method/bodyReturnType.ts -------------------------------------------------------------------------------- /src/transformer/descriptor/method/functionAssignment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/src/transformer/descriptor/method/functionAssignment.ts -------------------------------------------------------------------------------- /src/transformer/descriptor/method/functionReturnType.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/src/transformer/descriptor/method/functionReturnType.ts -------------------------------------------------------------------------------- /src/transformer/descriptor/method/functionType.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/src/transformer/descriptor/method/functionType.ts -------------------------------------------------------------------------------- /src/transformer/descriptor/method/method.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/src/transformer/descriptor/method/method.ts -------------------------------------------------------------------------------- /src/transformer/descriptor/method/methodDeclaration.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/src/transformer/descriptor/method/methodDeclaration.ts -------------------------------------------------------------------------------- /src/transformer/descriptor/method/methodSignature.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/src/transformer/descriptor/method/methodSignature.ts -------------------------------------------------------------------------------- /src/transformer/descriptor/mock/mockCall.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/src/transformer/descriptor/mock/mockCall.ts -------------------------------------------------------------------------------- /src/transformer/descriptor/mock/mockMarker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/src/transformer/descriptor/mock/mockMarker.ts -------------------------------------------------------------------------------- /src/transformer/descriptor/mock/mockProperties.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/src/transformer/descriptor/mock/mockProperties.ts -------------------------------------------------------------------------------- /src/transformer/descriptor/mock/mockPropertiesAssignments.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/src/transformer/descriptor/mock/mockPropertiesAssignments.ts -------------------------------------------------------------------------------- /src/transformer/descriptor/mock/propertyLike.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/src/transformer/descriptor/mock/propertyLike.ts -------------------------------------------------------------------------------- /src/transformer/descriptor/mock/signatureLike.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/src/transformer/descriptor/mock/signatureLike.ts -------------------------------------------------------------------------------- /src/transformer/descriptor/module/module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/src/transformer/descriptor/module/module.ts -------------------------------------------------------------------------------- /src/transformer/descriptor/nodeJsTypes/nodeJsTypes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/src/transformer/descriptor/nodeJsTypes/nodeJsTypes.ts -------------------------------------------------------------------------------- /src/transformer/descriptor/null/null.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/src/transformer/descriptor/null/null.ts -------------------------------------------------------------------------------- /src/transformer/descriptor/number/number.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/src/transformer/descriptor/number/number.ts -------------------------------------------------------------------------------- /src/transformer/descriptor/objectLiteral/objectLiteral.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/src/transformer/descriptor/objectLiteral/objectLiteral.ts -------------------------------------------------------------------------------- /src/transformer/descriptor/parameter/parameter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/src/transformer/descriptor/parameter/parameter.ts -------------------------------------------------------------------------------- /src/transformer/descriptor/parenthesized/parenthesized.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/src/transformer/descriptor/parenthesized/parenthesized.ts -------------------------------------------------------------------------------- /src/transformer/descriptor/parenthesizedExpression/getParenthesizedExpressionDescriptor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/src/transformer/descriptor/parenthesizedExpression/getParenthesizedExpressionDescriptor.ts -------------------------------------------------------------------------------- /src/transformer/descriptor/properties/properties.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/src/transformer/descriptor/properties/properties.ts -------------------------------------------------------------------------------- /src/transformer/descriptor/property/cache.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/src/transformer/descriptor/property/cache.ts -------------------------------------------------------------------------------- /src/transformer/descriptor/property/propertySignature.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/src/transformer/descriptor/property/propertySignature.ts -------------------------------------------------------------------------------- /src/transformer/descriptor/random/random.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/src/transformer/descriptor/random/random.ts -------------------------------------------------------------------------------- /src/transformer/descriptor/shorthandPropertyAssignment/shorthandPropertyAssignment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/src/transformer/descriptor/shorthandPropertyAssignment/shorthandPropertyAssignment.ts -------------------------------------------------------------------------------- /src/transformer/descriptor/string/string.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/src/transformer/descriptor/string/string.ts -------------------------------------------------------------------------------- /src/transformer/descriptor/tsLibs/typecriptLibs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/src/transformer/descriptor/tsLibs/typecriptLibs.ts -------------------------------------------------------------------------------- /src/transformer/descriptor/tsLibs/typescriptLibsTypes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/src/transformer/descriptor/tsLibs/typescriptLibsTypes.ts -------------------------------------------------------------------------------- /src/transformer/descriptor/tuple/tuple.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/src/transformer/descriptor/tuple/tuple.ts -------------------------------------------------------------------------------- /src/transformer/descriptor/type/type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/src/transformer/descriptor/type/type.ts -------------------------------------------------------------------------------- /src/transformer/descriptor/type/typeImport.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/src/transformer/descriptor/type/typeImport.ts -------------------------------------------------------------------------------- /src/transformer/descriptor/typeAlias/typeAlias.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/src/transformer/descriptor/typeAlias/typeAlias.ts -------------------------------------------------------------------------------- /src/transformer/descriptor/typeLiteral/typeLiteral.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/src/transformer/descriptor/typeLiteral/typeLiteral.ts -------------------------------------------------------------------------------- /src/transformer/descriptor/typeNode/convertNodeToTypeNode.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/src/transformer/descriptor/typeNode/convertNodeToTypeNode.ts -------------------------------------------------------------------------------- /src/transformer/descriptor/typeOperator/typeOperator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/src/transformer/descriptor/typeOperator/typeOperator.ts -------------------------------------------------------------------------------- /src/transformer/descriptor/typeParameter/typeParameter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/src/transformer/descriptor/typeParameter/typeParameter.ts -------------------------------------------------------------------------------- /src/transformer/descriptor/typeQuery/enumTypeQuery.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/src/transformer/descriptor/typeQuery/enumTypeQuery.ts -------------------------------------------------------------------------------- /src/transformer/descriptor/typeQuery/typeQuery.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/src/transformer/descriptor/typeQuery/typeQuery.ts -------------------------------------------------------------------------------- /src/transformer/descriptor/typeReference/typeReference.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/src/transformer/descriptor/typeReference/typeReference.ts -------------------------------------------------------------------------------- /src/transformer/descriptor/undefined/undefined.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/src/transformer/descriptor/undefined/undefined.ts -------------------------------------------------------------------------------- /src/transformer/descriptor/union/union.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/src/transformer/descriptor/union/union.ts -------------------------------------------------------------------------------- /src/transformer/descriptor/variable/variable.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/src/transformer/descriptor/variable/variable.ts -------------------------------------------------------------------------------- /src/transformer/genericDeclaration/genericDeclaration.interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/src/transformer/genericDeclaration/genericDeclaration.interface.ts -------------------------------------------------------------------------------- /src/transformer/genericDeclaration/genericDeclaration.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/src/transformer/genericDeclaration/genericDeclaration.ts -------------------------------------------------------------------------------- /src/transformer/genericDeclaration/genericDeclarationSupported.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/src/transformer/genericDeclaration/genericDeclarationSupported.ts -------------------------------------------------------------------------------- /src/transformer/genericDeclaration/genericParameter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/src/transformer/genericDeclaration/genericParameter.ts -------------------------------------------------------------------------------- /src/transformer/helper/import.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/src/transformer/helper/import.ts -------------------------------------------------------------------------------- /src/transformer/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/src/transformer/index.ts -------------------------------------------------------------------------------- /src/transformer/logger/transformerLogger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/src/transformer/logger/transformerLogger.ts -------------------------------------------------------------------------------- /src/transformer/matcher/matcher.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/src/transformer/matcher/matcher.ts -------------------------------------------------------------------------------- /src/transformer/mergeExpression/mergeExpression.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/src/transformer/mergeExpression/mergeExpression.ts -------------------------------------------------------------------------------- /src/transformer/mock/currentCreateMockNode.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/src/transformer/mock/currentCreateMockNode.ts -------------------------------------------------------------------------------- /src/transformer/mock/mock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/src/transformer/mock/mock.ts -------------------------------------------------------------------------------- /src/transformer/mockDefiner/cache/declarationCache.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/src/transformer/mockDefiner/cache/declarationCache.ts -------------------------------------------------------------------------------- /src/transformer/mockDefiner/cache/declarationListCache.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/src/transformer/mockDefiner/cache/declarationListCache.ts -------------------------------------------------------------------------------- /src/transformer/mockDefiner/factoryUniqueName.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/src/transformer/mockDefiner/factoryUniqueName.ts -------------------------------------------------------------------------------- /src/transformer/mockDefiner/keyCounter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/src/transformer/mockDefiner/keyCounter.ts -------------------------------------------------------------------------------- /src/transformer/mockDefiner/mockDefiner.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/src/transformer/mockDefiner/mockDefiner.ts -------------------------------------------------------------------------------- /src/transformer/mockDefiner/modules/moduleImportIdentifierPerFile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/src/transformer/mockDefiner/modules/moduleImportIdentifierPerFile.ts -------------------------------------------------------------------------------- /src/transformer/mockDefiner/modules/moduleName.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/src/transformer/mockDefiner/modules/moduleName.ts -------------------------------------------------------------------------------- /src/transformer/mockDefiner/modules/moduleNameIdentifier.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/src/transformer/mockDefiner/modules/moduleNameIdentifier.ts -------------------------------------------------------------------------------- /src/transformer/mockDefiner/modules/modulesImportUrl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/src/transformer/mockDefiner/modules/modulesImportUrl.ts -------------------------------------------------------------------------------- /src/transformer/mockFactoryCall/mockFactoryCall.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/src/transformer/mockFactoryCall/mockFactoryCall.ts -------------------------------------------------------------------------------- /src/transformer/mockIdentifier/mockIdentifier.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/src/transformer/mockIdentifier/mockIdentifier.ts -------------------------------------------------------------------------------- /src/transformer/printNode.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/src/transformer/printNode.ts -------------------------------------------------------------------------------- /src/transformer/privateIdentifier/privateIdentifier.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/src/transformer/privateIdentifier/privateIdentifier.ts -------------------------------------------------------------------------------- /src/transformer/scope/scope.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/src/transformer/scope/scope.ts -------------------------------------------------------------------------------- /src/transformer/transformer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/src/transformer/transformer.ts -------------------------------------------------------------------------------- /src/transformer/typeReferenceReusable/typeReferenceReusable.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/src/transformer/typeReferenceReusable/typeReferenceReusable.ts -------------------------------------------------------------------------------- /src/typescriptFactory/typescriptFactory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/src/typescriptFactory/typescriptFactory.ts -------------------------------------------------------------------------------- /test/build/build.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/test/build/build.test.ts -------------------------------------------------------------------------------- /test/build/jasmine.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/test/build/jasmine.json -------------------------------------------------------------------------------- /test/build/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/test/build/tsconfig.json -------------------------------------------------------------------------------- /test/build/tsconfig.test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/test/build/tsconfig.test.json -------------------------------------------------------------------------------- /test/build/webpack.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/test/build/webpack.js -------------------------------------------------------------------------------- /test/createHydratedMock/create-hydrated-mock.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/test/createHydratedMock/create-hydrated-mock.test.ts -------------------------------------------------------------------------------- /test/createHydratedMock/jasmine.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/test/createHydratedMock/jasmine.json -------------------------------------------------------------------------------- /test/createHydratedMock/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/test/createHydratedMock/tsconfig.json -------------------------------------------------------------------------------- /test/features/jasmine.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/test/features/jasmine.json -------------------------------------------------------------------------------- /test/features/random/bool.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/test/features/random/bool.test.ts -------------------------------------------------------------------------------- /test/features/random/enum.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/test/features/random/enum.test.ts -------------------------------------------------------------------------------- /test/features/random/number.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/test/features/random/number.test.ts -------------------------------------------------------------------------------- /test/features/random/string.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/test/features/random/string.test.ts -------------------------------------------------------------------------------- /test/features/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/test/features/tsconfig.json -------------------------------------------------------------------------------- /test/filesFilter/jasmine.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/test/filesFilter/jasmine.json -------------------------------------------------------------------------------- /test/filesFilter/tests/exclude.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/test/filesFilter/tests/exclude.test.ts -------------------------------------------------------------------------------- /test/filesFilter/tests/include.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/test/filesFilter/tests/include.test.ts -------------------------------------------------------------------------------- /test/filesFilter/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/test/filesFilter/tsconfig.json -------------------------------------------------------------------------------- /test/framework/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/test/framework/config.ts -------------------------------------------------------------------------------- /test/framework/interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/test/framework/interface.ts -------------------------------------------------------------------------------- /test/framework/jasmine.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/test/framework/jasmine.json -------------------------------------------------------------------------------- /test/framework/reuse/reuse1.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/test/framework/reuse/reuse1.test.ts -------------------------------------------------------------------------------- /test/framework/reuse/reuse2.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/test/framework/reuse/reuse2.test.ts -------------------------------------------------------------------------------- /test/framework/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/test/framework/tsconfig.json -------------------------------------------------------------------------------- /test/frameworkContext/context.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/test/frameworkContext/context.ts -------------------------------------------------------------------------------- /test/frameworkContext/contextDeprecated.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/test/frameworkContext/contextDeprecated.ts -------------------------------------------------------------------------------- /test/frameworkContext/create-mock-list-values.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/test/frameworkContext/create-mock-list-values.test.ts -------------------------------------------------------------------------------- /test/frameworkContext/create-mock-list.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/test/frameworkContext/create-mock-list.test.ts -------------------------------------------------------------------------------- /test/frameworkContext/create-mock-values.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/test/frameworkContext/create-mock-values.test.ts -------------------------------------------------------------------------------- /test/frameworkContext/functions.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/test/frameworkContext/functions.test.ts -------------------------------------------------------------------------------- /test/frameworkContext/jasmine.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/test/frameworkContext/jasmine.json -------------------------------------------------------------------------------- /test/frameworkContext/jasmineDeprecated.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/test/frameworkContext/jasmineDeprecated.json -------------------------------------------------------------------------------- /test/frameworkContext/methodExtension.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/test/frameworkContext/methodExtension.test.ts -------------------------------------------------------------------------------- /test/frameworkContext/name.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/test/frameworkContext/name.test.ts -------------------------------------------------------------------------------- /test/frameworkContext/on.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/test/frameworkContext/on.test.ts -------------------------------------------------------------------------------- /test/frameworkContext/primitive.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/test/frameworkContext/primitive.test.ts -------------------------------------------------------------------------------- /test/frameworkContext/propertyLiteral/propertyLiteral.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/test/frameworkContext/propertyLiteral/propertyLiteral.test.ts -------------------------------------------------------------------------------- /test/frameworkContext/recursive/recursive.test.deprecated.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/test/frameworkContext/recursive/recursive.test.deprecated.ts -------------------------------------------------------------------------------- /test/frameworkContext/recursive/recursive.test.valid.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/test/frameworkContext/recursive/recursive.test.valid.ts -------------------------------------------------------------------------------- /test/frameworkContext/spy.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/test/frameworkContext/spy.test.ts -------------------------------------------------------------------------------- /test/frameworkContext/tsLibs/tsLibs.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/test/frameworkContext/tsLibs/tsLibs.test.ts -------------------------------------------------------------------------------- /test/frameworkContext/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/test/frameworkContext/tsconfig.json -------------------------------------------------------------------------------- /test/frameworkContext/typings.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/test/frameworkContext/typings.test.ts -------------------------------------------------------------------------------- /test/frameworkContext/typings/mock-definition.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/test/frameworkContext/typings/mock-definition.d.ts -------------------------------------------------------------------------------- /test/frameworkContext/utils/function.test.ts: -------------------------------------------------------------------------------- 1 | export function getTwo(): number { 2 | return 2; 3 | } 4 | -------------------------------------------------------------------------------- /test/logs/conditionalType.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/test/logs/conditionalType.ts -------------------------------------------------------------------------------- /test/logs/createMock.warning.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/test/logs/createMock.warning.test.ts -------------------------------------------------------------------------------- /test/logs/createMockList.warning.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/test/logs/createMockList.warning.test.ts -------------------------------------------------------------------------------- /test/logs/indexedAccess/indexedAccess.warning.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/test/logs/indexedAccess/indexedAccess.warning.test.ts -------------------------------------------------------------------------------- /test/logs/indexedAccess/indexedAccess.warning.type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/test/logs/indexedAccess/indexedAccess.warning.type.ts -------------------------------------------------------------------------------- /test/logs/jasmine.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/test/logs/jasmine.json -------------------------------------------------------------------------------- /test/logs/keyof/keyof.warning.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/test/logs/keyof/keyof.warning.test.ts -------------------------------------------------------------------------------- /test/logs/keyof/keyof.warning.type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/test/logs/keyof/keyof.warning.type.ts -------------------------------------------------------------------------------- /test/logs/missingTypeDefinition/missingTypeDefinition.warning.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/test/logs/missingTypeDefinition/missingTypeDefinition.warning.test.ts -------------------------------------------------------------------------------- /test/logs/missingTypeDefinition/missingTypeDefinition.warning.type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/test/logs/missingTypeDefinition/missingTypeDefinition.warning.type.ts -------------------------------------------------------------------------------- /test/logs/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/test/logs/tsconfig.json -------------------------------------------------------------------------------- /test/logs/untypedProperty/untypedProperty.warning.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/test/logs/untypedProperty/untypedProperty.warning.test.ts -------------------------------------------------------------------------------- /test/logs/untypedProperty/untypedProperty.warning.type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/test/logs/untypedProperty/untypedProperty.warning.type.ts -------------------------------------------------------------------------------- /test/logs/utils/log.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/test/logs/utils/log.ts -------------------------------------------------------------------------------- /test/noTransformer/jasmine.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/test/noTransformer/jasmine.json -------------------------------------------------------------------------------- /test/noTransformer/noTransformer.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/test/noTransformer/noTransformer.test.ts -------------------------------------------------------------------------------- /test/playground/jasmine.build.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/test/playground/jasmine.build.json -------------------------------------------------------------------------------- /test/playground/jasmine.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/test/playground/jasmine.json -------------------------------------------------------------------------------- /test/playground/playground.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/test/playground/playground.test.ts -------------------------------------------------------------------------------- /test/playground/tsconfig.build.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/test/playground/tsconfig.build.json -------------------------------------------------------------------------------- /test/playground/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/test/playground/tsconfig.json -------------------------------------------------------------------------------- /test/registerMock/context.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/test/registerMock/context.ts -------------------------------------------------------------------------------- /test/registerMock/extensionStrategy/extensionStrategy.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/test/registerMock/extensionStrategy/extensionStrategy.test.ts -------------------------------------------------------------------------------- /test/registerMock/fakePromise.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/test/registerMock/fakePromise.ts -------------------------------------------------------------------------------- /test/registerMock/generics/generics.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/test/registerMock/generics/generics.test.ts -------------------------------------------------------------------------------- /test/registerMock/interface/interface.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/test/registerMock/interface/interface.test.ts -------------------------------------------------------------------------------- /test/registerMock/jasmine.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/test/registerMock/jasmine.json -------------------------------------------------------------------------------- /test/registerMock/mockFromScope/mockFromScope.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/test/registerMock/mockFromScope/mockFromScope.ts -------------------------------------------------------------------------------- /test/registerMock/mockingPromise/mockingPromise.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/test/registerMock/mockingPromise/mockingPromise.test.ts -------------------------------------------------------------------------------- /test/registerMock/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/test/registerMock/tsconfig.json -------------------------------------------------------------------------------- /test/registerMock/typeAlias/typeAlias.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/test/registerMock/typeAlias/typeAlias.test.ts -------------------------------------------------------------------------------- /test/registerMock/typeLiteral/typeLiteral.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/test/registerMock/typeLiteral/typeLiteral.test.ts -------------------------------------------------------------------------------- /test/registerMock/typeQuery/typeQuery.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/test/registerMock/typeQuery/typeQuery.test.ts -------------------------------------------------------------------------------- /test/reporter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/test/reporter.js -------------------------------------------------------------------------------- /test/transformer/context.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/test/transformer/context.ts -------------------------------------------------------------------------------- /test/transformer/create-mock-list-values.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/test/transformer/create-mock-list-values.test.ts -------------------------------------------------------------------------------- /test/transformer/create-mock-list.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/test/transformer/create-mock-list.test.ts -------------------------------------------------------------------------------- /test/transformer/create-mock-values.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/test/transformer/create-mock-values.test.ts -------------------------------------------------------------------------------- /test/transformer/create-mock.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/test/transformer/create-mock.test.ts -------------------------------------------------------------------------------- /test/transformer/descriptor/assignments/assignments.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/test/transformer/descriptor/assignments/assignments.test.ts -------------------------------------------------------------------------------- /test/transformer/descriptor/assignments/assignmentsMethods.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/test/transformer/descriptor/assignments/assignmentsMethods.test.ts -------------------------------------------------------------------------------- /test/transformer/descriptor/basic.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/test/transformer/descriptor/basic.test.ts -------------------------------------------------------------------------------- /test/transformer/descriptor/bigint/bigint.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/test/transformer/descriptor/bigint/bigint.test.ts -------------------------------------------------------------------------------- /test/transformer/descriptor/classes.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/test/transformer/descriptor/classes.test.ts -------------------------------------------------------------------------------- /test/transformer/descriptor/constructor/constructorType.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/test/transformer/descriptor/constructor/constructorType.test.ts -------------------------------------------------------------------------------- /test/transformer/descriptor/declarations/declarations.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/test/transformer/descriptor/declarations/declarations.test.ts -------------------------------------------------------------------------------- /test/transformer/descriptor/dictionary.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/test/transformer/descriptor/dictionary.test.ts -------------------------------------------------------------------------------- /test/transformer/descriptor/directTypes/directType.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/test/transformer/descriptor/directTypes/directType.test.ts -------------------------------------------------------------------------------- /test/transformer/descriptor/enum.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/test/transformer/descriptor/enum.test.ts -------------------------------------------------------------------------------- /test/transformer/descriptor/extends.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/test/transformer/descriptor/extends.test.ts -------------------------------------------------------------------------------- /test/transformer/descriptor/extends/callExpression.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/test/transformer/descriptor/extends/callExpression.test.ts -------------------------------------------------------------------------------- /test/transformer/descriptor/extends/declaration.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/test/transformer/descriptor/extends/declaration.ts -------------------------------------------------------------------------------- /test/transformer/descriptor/extends/mappedTypes.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/test/transformer/descriptor/extends/mappedTypes.test.ts -------------------------------------------------------------------------------- /test/transformer/descriptor/functions/functionsWithoutTypes.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/test/transformer/descriptor/functions/functionsWithoutTypes.test.ts -------------------------------------------------------------------------------- /test/transformer/descriptor/generic/default.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/test/transformer/descriptor/generic/default.test.ts -------------------------------------------------------------------------------- /test/transformer/descriptor/generic/extends.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/test/transformer/descriptor/generic/extends.test.ts -------------------------------------------------------------------------------- /test/transformer/descriptor/generic/generic.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/test/transformer/descriptor/generic/generic.test.ts -------------------------------------------------------------------------------- /test/transformer/descriptor/generic/import.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/test/transformer/descriptor/generic/import.test.ts -------------------------------------------------------------------------------- /test/transformer/descriptor/generic/multipleDeclaration.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/test/transformer/descriptor/generic/multipleDeclaration.test.ts -------------------------------------------------------------------------------- /test/transformer/descriptor/generic/null.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/test/transformer/descriptor/generic/null.test.ts -------------------------------------------------------------------------------- /test/transformer/descriptor/generic/reuse.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/test/transformer/descriptor/generic/reuse.test.ts -------------------------------------------------------------------------------- /test/transformer/descriptor/getAccessor/getAccessor.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/test/transformer/descriptor/getAccessor/getAccessor.test.ts -------------------------------------------------------------------------------- /test/transformer/descriptor/import/exportSpecifier.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/test/transformer/descriptor/import/exportSpecifier.test.ts -------------------------------------------------------------------------------- /test/transformer/descriptor/import/import.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/test/transformer/descriptor/import/import.test.ts -------------------------------------------------------------------------------- /test/transformer/descriptor/import/importAlias.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/test/transformer/descriptor/import/importAlias.test.ts -------------------------------------------------------------------------------- /test/transformer/descriptor/import/importClause.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/test/transformer/descriptor/import/importClause.test.ts -------------------------------------------------------------------------------- /test/transformer/descriptor/import/importEqual.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/test/transformer/descriptor/import/importEqual.test.ts -------------------------------------------------------------------------------- /test/transformer/descriptor/indexedAccess/indexedAccess.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/test/transformer/descriptor/indexedAccess/indexedAccess.test.ts -------------------------------------------------------------------------------- /test/transformer/descriptor/interface.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/test/transformer/descriptor/interface.test.ts -------------------------------------------------------------------------------- /test/transformer/descriptor/intersection/functions.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/test/transformer/descriptor/intersection/functions.test.ts -------------------------------------------------------------------------------- /test/transformer/descriptor/intersection/generic.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/test/transformer/descriptor/intersection/generic.test.ts -------------------------------------------------------------------------------- /test/transformer/descriptor/intersection/interfaceWithoutProperties.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/test/transformer/descriptor/intersection/interfaceWithoutProperties.test.ts -------------------------------------------------------------------------------- /test/transformer/descriptor/intersection/intersection.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/test/transformer/descriptor/intersection/intersection.test.ts -------------------------------------------------------------------------------- /test/transformer/descriptor/intersection/recursive.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/test/transformer/descriptor/intersection/recursive.test.ts -------------------------------------------------------------------------------- /test/transformer/descriptor/intersection/reuse.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/test/transformer/descriptor/intersection/reuse.test.ts -------------------------------------------------------------------------------- /test/transformer/descriptor/keyin/keyin.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/test/transformer/descriptor/keyin/keyin.test.ts -------------------------------------------------------------------------------- /test/transformer/descriptor/keyin/keyinkeyof.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/test/transformer/descriptor/keyin/keyinkeyof.test.ts -------------------------------------------------------------------------------- /test/transformer/descriptor/literal/literal.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/test/transformer/descriptor/literal/literal.test.ts -------------------------------------------------------------------------------- /test/transformer/descriptor/methods/methods.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/test/transformer/descriptor/methods/methods.test.ts -------------------------------------------------------------------------------- /test/transformer/descriptor/methods/reservedWords.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/test/transformer/descriptor/methods/reservedWords.test.ts -------------------------------------------------------------------------------- /test/transformer/descriptor/namespace.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/test/transformer/descriptor/namespace.test.ts -------------------------------------------------------------------------------- /test/transformer/descriptor/never/never.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/test/transformer/descriptor/never/never.test.ts -------------------------------------------------------------------------------- /test/transformer/descriptor/notReusable/notReusable.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/test/transformer/descriptor/notReusable/notReusable.test.ts -------------------------------------------------------------------------------- /test/transformer/descriptor/optional/optional.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/test/transformer/descriptor/optional/optional.test.ts -------------------------------------------------------------------------------- /test/transformer/descriptor/parenthesized/intersection.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/test/transformer/descriptor/parenthesized/intersection.test.ts -------------------------------------------------------------------------------- /test/transformer/descriptor/parenthesized/type.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/test/transformer/descriptor/parenthesized/type.test.ts -------------------------------------------------------------------------------- /test/transformer/descriptor/properties/assignFalsy.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/test/transformer/descriptor/properties/assignFalsy.test.ts -------------------------------------------------------------------------------- /test/transformer/descriptor/properties/computed.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/test/transformer/descriptor/properties/computed.test.ts -------------------------------------------------------------------------------- /test/transformer/descriptor/properties/inferred.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/test/transformer/descriptor/properties/inferred.test.ts -------------------------------------------------------------------------------- /test/transformer/descriptor/properties/literal.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/test/transformer/descriptor/properties/literal.test.ts -------------------------------------------------------------------------------- /test/transformer/descriptor/properties/multipleDeclaration.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/test/transformer/descriptor/properties/multipleDeclaration.test.ts -------------------------------------------------------------------------------- /test/transformer/descriptor/readonly/readonly.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/test/transformer/descriptor/readonly/readonly.test.ts -------------------------------------------------------------------------------- /test/transformer/descriptor/recursive/recursive.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/test/transformer/descriptor/recursive/recursive.test.ts -------------------------------------------------------------------------------- /test/transformer/descriptor/setAccessor/setAccessor.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/test/transformer/descriptor/setAccessor/setAccessor.test.ts -------------------------------------------------------------------------------- /test/transformer/descriptor/this/this.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/test/transformer/descriptor/this/this.test.ts -------------------------------------------------------------------------------- /test/transformer/descriptor/tsLibs/tsLibs.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/test/transformer/descriptor/tsLibs/tsLibs.test.ts -------------------------------------------------------------------------------- /test/transformer/descriptor/tuple/tuple.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/test/transformer/descriptor/tuple/tuple.test.ts -------------------------------------------------------------------------------- /test/transformer/descriptor/typeQuery/typeQuery.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/test/transformer/descriptor/typeQuery/typeQuery.test.ts -------------------------------------------------------------------------------- /test/transformer/descriptor/typeQuery/typeQueryExportClasses.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/test/transformer/descriptor/typeQuery/typeQueryExportClasses.test.ts -------------------------------------------------------------------------------- /test/transformer/descriptor/typeQuery/typeQueryOfExports.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/test/transformer/descriptor/typeQuery/typeQueryOfExports.test.ts -------------------------------------------------------------------------------- /test/transformer/descriptor/typeQuery/typeQueryUndefined.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/test/transformer/descriptor/typeQuery/typeQueryUndefined.test.ts -------------------------------------------------------------------------------- /test/transformer/descriptor/union/union.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/test/transformer/descriptor/union/union.test.ts -------------------------------------------------------------------------------- /test/transformer/descriptor/union/unionUndefined.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/test/transformer/descriptor/union/unionUndefined.test.ts -------------------------------------------------------------------------------- /test/transformer/descriptor/utils/classes/AbstractClass.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/test/transformer/descriptor/utils/classes/AbstractClass.ts -------------------------------------------------------------------------------- /test/transformer/descriptor/utils/classes/EmptyClass.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/test/transformer/descriptor/utils/classes/EmptyClass.ts -------------------------------------------------------------------------------- /test/transformer/descriptor/utils/classes/class.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/test/transformer/descriptor/utils/classes/class.ts -------------------------------------------------------------------------------- /test/transformer/descriptor/utils/classes/withGenerics.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/test/transformer/descriptor/utils/classes/withGenerics.ts -------------------------------------------------------------------------------- /test/transformer/descriptor/utils/declarations/declaration.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/test/transformer/descriptor/utils/declarations/declaration.ts -------------------------------------------------------------------------------- /test/transformer/descriptor/utils/declarations/multipleDeclaration.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/test/transformer/descriptor/utils/declarations/multipleDeclaration.ts -------------------------------------------------------------------------------- /test/transformer/descriptor/utils/export/export.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/test/transformer/descriptor/utils/export/export.ts -------------------------------------------------------------------------------- /test/transformer/descriptor/utils/export/exportAlias.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/test/transformer/descriptor/utils/export/exportAlias.ts -------------------------------------------------------------------------------- /test/transformer/descriptor/utils/export/exportEqual.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/test/transformer/descriptor/utils/export/exportEqual.ts -------------------------------------------------------------------------------- /test/transformer/descriptor/utils/export/exportWithThis.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/test/transformer/descriptor/utils/export/exportWithThis.ts -------------------------------------------------------------------------------- /test/transformer/descriptor/utils/interfaces/anotherExportEqual.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/test/transformer/descriptor/utils/interfaces/anotherExportEqual.ts -------------------------------------------------------------------------------- /test/transformer/descriptor/utils/interfaces/basic.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/test/transformer/descriptor/utils/interfaces/basic.ts -------------------------------------------------------------------------------- /test/transformer/descriptor/utils/interfaces/default.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/test/transformer/descriptor/utils/interfaces/default.ts -------------------------------------------------------------------------------- /test/transformer/descriptor/utils/interfaces/defaultWithThis.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/test/transformer/descriptor/utils/interfaces/defaultWithThis.ts -------------------------------------------------------------------------------- /test/transformer/descriptor/utils/interfaces/exportDefaultDeclaration.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/test/transformer/descriptor/utils/interfaces/exportDefaultDeclaration.ts -------------------------------------------------------------------------------- /test/transformer/descriptor/utils/interfaces/exportEqual.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/test/transformer/descriptor/utils/interfaces/exportEqual.ts -------------------------------------------------------------------------------- /test/transformer/descriptor/utils/interfaces/exportEqualObject.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/test/transformer/descriptor/utils/interfaces/exportEqualObject.ts -------------------------------------------------------------------------------- /test/transformer/descriptor/utils/interfaces/importAndExport.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/test/transformer/descriptor/utils/interfaces/importAndExport.ts -------------------------------------------------------------------------------- /test/transformer/descriptor/utils/interfaces/importDefaultInterface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/test/transformer/descriptor/utils/interfaces/importDefaultInterface.ts -------------------------------------------------------------------------------- /test/transformer/descriptor/utils/interfaces/importInterface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/test/transformer/descriptor/utils/interfaces/importInterface.ts -------------------------------------------------------------------------------- /test/transformer/descriptor/utils/interfaces/importNameSpace.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/test/transformer/descriptor/utils/interfaces/importNameSpace.ts -------------------------------------------------------------------------------- /test/transformer/descriptor/utils/interfaces/importNestedInterface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/test/transformer/descriptor/utils/interfaces/importNestedInterface.ts -------------------------------------------------------------------------------- /test/transformer/descriptor/utils/interfaces/recursive.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/test/transformer/descriptor/utils/interfaces/recursive.ts -------------------------------------------------------------------------------- /test/transformer/descriptor/utils/interfaces/withGenerics.ts: -------------------------------------------------------------------------------- 1 | export interface ImportWithGenerics { 2 | a: T; 3 | } 4 | -------------------------------------------------------------------------------- /test/transformer/descriptor/utils/interfaces/withMethods.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/test/transformer/descriptor/utils/interfaces/withMethods.ts -------------------------------------------------------------------------------- /test/transformer/descriptor/utils/namespace/namespace.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/test/transformer/descriptor/utils/namespace/namespace.ts -------------------------------------------------------------------------------- /test/transformer/descriptor/utils/object/object.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/test/transformer/descriptor/utils/object/object.ts -------------------------------------------------------------------------------- /test/transformer/descriptor/utils/typeQuery/typeQueryUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/test/transformer/descriptor/utils/typeQuery/typeQueryUtils.ts -------------------------------------------------------------------------------- /test/transformer/descriptor/utils/types/literals.ts: -------------------------------------------------------------------------------- 1 | export type LiteralA = 'a'; 2 | -------------------------------------------------------------------------------- /test/transformer/descriptor/utils/types/type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/test/transformer/descriptor/utils/types/type.ts -------------------------------------------------------------------------------- /test/transformer/descriptor/utils/types/typeUnion.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/test/transformer/descriptor/utils/types/typeUnion.ts -------------------------------------------------------------------------------- /test/transformer/descriptor/utils/types/withGenerics.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/test/transformer/descriptor/utils/types/withGenerics.ts -------------------------------------------------------------------------------- /test/transformer/identifier/identifier.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/test/transformer/identifier/identifier.test.ts -------------------------------------------------------------------------------- /test/transformer/jasmine.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/test/transformer/jasmine.json -------------------------------------------------------------------------------- /test/transformer/register-mock.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/test/transformer/register-mock.test.ts -------------------------------------------------------------------------------- /test/transformer/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/test/transformer/tsconfig.json -------------------------------------------------------------------------------- /test/transformer/utilities/class.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/test/transformer/utilities/class.ts -------------------------------------------------------------------------------- /test/transformer/utilities/classWithGenerics.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/test/transformer/utilities/classWithGenerics.ts -------------------------------------------------------------------------------- /test/transformer/utilities/create-mock.ts: -------------------------------------------------------------------------------- 1 | export function createMock(): string { 2 | return 'property'; 3 | } 4 | -------------------------------------------------------------------------------- /test/transformer/utilities/getObjectKeyValues.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/test/transformer/utilities/getObjectKeyValues.ts -------------------------------------------------------------------------------- /test/transformer/utilities/withStringLiteralProperties.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/test/transformer/utilities/withStringLiteralProperties.ts -------------------------------------------------------------------------------- /test/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/test/tsconfig.json -------------------------------------------------------------------------------- /test/typings/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/test/typings/index.d.ts -------------------------------------------------------------------------------- /test/unit/jasmine.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/test/unit/jasmine.json -------------------------------------------------------------------------------- /test/unit/transformer/array/compare.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/test/unit/transformer/array/compare.test.ts -------------------------------------------------------------------------------- /tsconfig.base.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/tsconfig.base.json -------------------------------------------------------------------------------- /tsconfig.eslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/tsconfig.eslint.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/tsconfig.json -------------------------------------------------------------------------------- /ui/.env: -------------------------------------------------------------------------------- 1 | BASE_URL=/ts-auto-mock/ 2 | -------------------------------------------------------------------------------- /ui/.env.development: -------------------------------------------------------------------------------- 1 | BASE_URL=/ 2 | -------------------------------------------------------------------------------- /ui/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | dist 3 | .docz 4 | -------------------------------------------------------------------------------- /ui/_config.yml: -------------------------------------------------------------------------------- 1 | baseurl: "" 2 | -------------------------------------------------------------------------------- /ui/doczrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/ui/doczrc.js -------------------------------------------------------------------------------- /ui/gatsby-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/ui/gatsby-config.js -------------------------------------------------------------------------------- /ui/gatsby-node.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/ui/gatsby-node.js -------------------------------------------------------------------------------- /ui/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/ui/package-lock.json -------------------------------------------------------------------------------- /ui/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/ui/package.json -------------------------------------------------------------------------------- /ui/public/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/ui/public/favicon.png -------------------------------------------------------------------------------- /ui/src/copy/copy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/ui/src/copy/copy.ts -------------------------------------------------------------------------------- /ui/src/core/button/button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/ui/src/core/button/button.tsx -------------------------------------------------------------------------------- /ui/src/core/data/browserFileReader.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/ui/src/core/data/browserFileReader.ts -------------------------------------------------------------------------------- /ui/src/core/logo/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/ui/src/core/logo/logo.png -------------------------------------------------------------------------------- /ui/src/core/logo/logo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/ui/src/core/logo/logo.tsx -------------------------------------------------------------------------------- /ui/src/core/logo/logo_dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/ui/src/core/logo/logo_dark.svg -------------------------------------------------------------------------------- /ui/src/core/logo/logo_light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/ui/src/core/logo/logo_light.svg -------------------------------------------------------------------------------- /ui/src/core/theme/theme.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/ui/src/core/theme/theme.ts -------------------------------------------------------------------------------- /ui/src/core/theme/useTheme.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/ui/src/core/theme/useTheme.tsx -------------------------------------------------------------------------------- /ui/src/core/useDebounce/useDebounce.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/ui/src/core/useDebounce/useDebounce.ts -------------------------------------------------------------------------------- /ui/src/definitely-typed/definitelyTyped.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/ui/src/definitely-typed/definitelyTyped.scss -------------------------------------------------------------------------------- /ui/src/definitely-typed/definitelyTyped.styled.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/ui/src/definitely-typed/definitelyTyped.styled.ts -------------------------------------------------------------------------------- /ui/src/definitely-typed/definitelyTyped.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/ui/src/definitely-typed/definitelyTyped.tsx -------------------------------------------------------------------------------- /ui/src/definitely-typed/filters/definitelyTypedFilters.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/ui/src/definitely-typed/filters/definitelyTypedFilters.scss -------------------------------------------------------------------------------- /ui/src/definitely-typed/filters/definitelyTypedFilters.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/ui/src/definitely-typed/filters/definitelyTypedFilters.tsx -------------------------------------------------------------------------------- /ui/src/definitely-typed/filters/errorPresetFilters.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/ui/src/definitely-typed/filters/errorPresetFilters.ts -------------------------------------------------------------------------------- /ui/src/definitely-typed/filters/filterService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/ui/src/definitely-typed/filters/filterService.ts -------------------------------------------------------------------------------- /ui/src/definitely-typed/input/input.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/ui/src/definitely-typed/input/input.scss -------------------------------------------------------------------------------- /ui/src/definitely-typed/interfaces/definitelyTypedRun.interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/ui/src/definitely-typed/interfaces/definitelyTypedRun.interface.ts -------------------------------------------------------------------------------- /ui/src/definitely-typed/interfaces/definitelyTypedRunResponse.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/ui/src/definitely-typed/interfaces/definitelyTypedRunResponse.ts -------------------------------------------------------------------------------- /ui/src/definitely-typed/interfaces/definitelyTypedTypeRun.interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/ui/src/definitely-typed/interfaces/definitelyTypedTypeRun.interface.ts -------------------------------------------------------------------------------- /ui/src/gatsby-theme-docz/wrapper.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/ui/src/gatsby-theme-docz/wrapper.jsx -------------------------------------------------------------------------------- /ui/src/home/home-content/home-content.styled.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/ui/src/home/home-content/home-content.styled.ts -------------------------------------------------------------------------------- /ui/src/home/home-content/home-content.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/ui/src/home/home-content/home-content.tsx -------------------------------------------------------------------------------- /ui/src/home/home-feature/home-feature.styled.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/ui/src/home/home-feature/home-feature.styled.ts -------------------------------------------------------------------------------- /ui/src/home/home-feature/home-feature.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/ui/src/home/home-feature/home-feature.tsx -------------------------------------------------------------------------------- /ui/src/home/home-footer/home-footer.styled.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/ui/src/home/home-footer/home-footer.styled.ts -------------------------------------------------------------------------------- /ui/src/home/home-footer/home-footer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/ui/src/home/home-footer/home-footer.tsx -------------------------------------------------------------------------------- /ui/src/home/home-footer/slack_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/ui/src/home/home-footer/slack_small.png -------------------------------------------------------------------------------- /ui/src/home/home-header/home-header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/ui/src/home/home-header/home-header.tsx -------------------------------------------------------------------------------- /ui/src/performance/chart/chart.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/ui/src/performance/chart/chart.tsx -------------------------------------------------------------------------------- /ui/src/performance/performance.styled.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/ui/src/performance/performance.styled.ts -------------------------------------------------------------------------------- /ui/src/performance/performance.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/ui/src/performance/performance.tsx -------------------------------------------------------------------------------- /ui/src/performance/performanceService/performanceService.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/ui/src/performance/performanceService/performanceService.tsx -------------------------------------------------------------------------------- /ui/src/style/select/select.styled.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/ui/src/style/select/select.styled.ts -------------------------------------------------------------------------------- /ui/src/style/text/sub-header/sub-header.style.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/ui/src/style/text/sub-header/sub-header.style.ts -------------------------------------------------------------------------------- /ui/src/style/view/centered/centered.styled.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/ui/src/style/view/centered/centered.styled.tsx -------------------------------------------------------------------------------- /ui/src/style/view/centered/centered.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/ui/src/style/view/centered/centered.tsx -------------------------------------------------------------------------------- /ui/src/style/view/column/column.styled.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/ui/src/style/view/column/column.styled.ts -------------------------------------------------------------------------------- /ui/src/style/view/row/centered.row.styled.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/ui/src/style/view/row/centered.row.styled.tsx -------------------------------------------------------------------------------- /ui/src/style/view/row/row.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/ui/src/style/view/row/row.tsx -------------------------------------------------------------------------------- /ui/src/views/config.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/ui/src/views/config.md -------------------------------------------------------------------------------- /ui/src/views/create-hydrated-mock.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/ui/src/views/create-hydrated-mock.mdx -------------------------------------------------------------------------------- /ui/src/views/create-mock-list.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/ui/src/views/create-mock-list.mdx -------------------------------------------------------------------------------- /ui/src/views/create-mock.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/ui/src/views/create-mock.mdx -------------------------------------------------------------------------------- /ui/src/views/definitely-typed.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/ui/src/views/definitely-typed.mdx -------------------------------------------------------------------------------- /ui/src/views/extension.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/ui/src/views/extension.mdx -------------------------------------------------------------------------------- /ui/src/views/home.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/ui/src/views/home.mdx -------------------------------------------------------------------------------- /ui/src/views/installation.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/ui/src/views/installation.mdx -------------------------------------------------------------------------------- /ui/src/views/local-development.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/ui/src/views/local-development.mdx -------------------------------------------------------------------------------- /ui/src/views/performance.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/ui/src/views/performance.mdx -------------------------------------------------------------------------------- /ui/src/views/register-mock.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/ui/src/views/register-mock.mdx -------------------------------------------------------------------------------- /ui/src/views/types-not-supported.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/ui/src/views/types-not-supported.mdx -------------------------------------------------------------------------------- /ui/src/views/types-supported.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/ui/src/views/types-supported.mdx -------------------------------------------------------------------------------- /ui/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/ui/tsconfig.json -------------------------------------------------------------------------------- /utils/dataFileSystem/dataFileSystemReader.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/utils/dataFileSystem/dataFileSystemReader.d.ts -------------------------------------------------------------------------------- /utils/dataFileSystem/dataFileSystemReader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/utils/dataFileSystem/dataFileSystemReader.js -------------------------------------------------------------------------------- /utils/dataFileSystem/dataFileSystemWriter.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/utils/dataFileSystem/dataFileSystemWriter.d.ts -------------------------------------------------------------------------------- /utils/dataFileSystem/dataFileSystemWriter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/utils/dataFileSystem/dataFileSystemWriter.js -------------------------------------------------------------------------------- /utils/dataFileSystem/nodeFileReader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/utils/dataFileSystem/nodeFileReader.js -------------------------------------------------------------------------------- /utils/exec/execPromise.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/utils/exec/execPromise.js -------------------------------------------------------------------------------- /utils/process/process.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/utils/process/process.js -------------------------------------------------------------------------------- /utils/uuid/uuid.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Typescript-TDD/ts-auto-mock/HEAD/utils/uuid/uuid.js --------------------------------------------------------------------------------