├── .changeset ├── README.md ├── config.json └── short-lions-reply.md ├── .github └── workflows │ ├── main.yml │ └── publish.yml ├── .gitignore ├── .npmignore ├── CHANGELOG.md ├── LICENSE ├── package.json ├── pnpm-lock.yaml ├── rEaDMe.md ├── src ├── index.ts ├── playground.ts ├── types.ts └── utils.ts ├── tests ├── fromAny.test.ts ├── fromExact.test.ts ├── fromPartial.test.ts └── test-utils.ts ├── tsconfig.json └── turbo.json /.changeset/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/total-typescript/shoehorn/HEAD/.changeset/README.md -------------------------------------------------------------------------------- /.changeset/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/total-typescript/shoehorn/HEAD/.changeset/config.json -------------------------------------------------------------------------------- /.changeset/short-lions-reply.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/total-typescript/shoehorn/HEAD/.changeset/short-lions-reply.md -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/total-typescript/shoehorn/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/total-typescript/shoehorn/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | dist 3 | .turbo -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/total-typescript/shoehorn/HEAD/.npmignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/total-typescript/shoehorn/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/total-typescript/shoehorn/HEAD/LICENSE -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/total-typescript/shoehorn/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/total-typescript/shoehorn/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /rEaDMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/total-typescript/shoehorn/HEAD/rEaDMe.md -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/total-typescript/shoehorn/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/playground.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/total-typescript/shoehorn/HEAD/src/playground.ts -------------------------------------------------------------------------------- /src/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/total-typescript/shoehorn/HEAD/src/types.ts -------------------------------------------------------------------------------- /src/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/total-typescript/shoehorn/HEAD/src/utils.ts -------------------------------------------------------------------------------- /tests/fromAny.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/total-typescript/shoehorn/HEAD/tests/fromAny.test.ts -------------------------------------------------------------------------------- /tests/fromExact.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/total-typescript/shoehorn/HEAD/tests/fromExact.test.ts -------------------------------------------------------------------------------- /tests/fromPartial.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/total-typescript/shoehorn/HEAD/tests/fromPartial.test.ts -------------------------------------------------------------------------------- /tests/test-utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/total-typescript/shoehorn/HEAD/tests/test-utils.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/total-typescript/shoehorn/HEAD/tsconfig.json -------------------------------------------------------------------------------- /turbo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/total-typescript/shoehorn/HEAD/turbo.json --------------------------------------------------------------------------------