├── .gitignore ├── .npmignore ├── .prettierrc ├── LICENSE ├── README.md ├── index.spec.ts ├── index.ts ├── package.json ├── test.ts ├── tsconfig.json └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TCMiranda/joi-extract-type/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TCMiranda/joi-extract-type/HEAD/.prettierrc -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TCMiranda/joi-extract-type/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TCMiranda/joi-extract-type/HEAD/README.md -------------------------------------------------------------------------------- /index.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TCMiranda/joi-extract-type/HEAD/index.spec.ts -------------------------------------------------------------------------------- /index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TCMiranda/joi-extract-type/HEAD/index.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TCMiranda/joi-extract-type/HEAD/package.json -------------------------------------------------------------------------------- /test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TCMiranda/joi-extract-type/HEAD/test.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TCMiranda/joi-extract-type/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TCMiranda/joi-extract-type/HEAD/yarn.lock --------------------------------------------------------------------------------