├── .editorconfig ├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── SECURITY.md ├── examples └── test-definition │ ├── example.d.ts │ ├── example.js │ ├── package-lock.json │ ├── package.json │ ├── test.ts │ └── tsconfig.json ├── package.json ├── src ├── __fixtures__ │ ├── .gitignore │ ├── test-import-spread.ts │ ├── test-import-star.ts │ └── test-var-shadow.ts ├── __snapshots__ │ └── transform.spec.ts.snap ├── index.spec.ts ├── index.ts ├── transform.spec.ts └── transform.ts └── tsconfig.json /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-expect/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | npm-debug.log 3 | coverage/ 4 | node_modules/ 5 | dist/ 6 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-expect/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-expect/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-expect/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-expect/HEAD/SECURITY.md -------------------------------------------------------------------------------- /examples/test-definition/example.d.ts: -------------------------------------------------------------------------------- 1 | export class Foo { 2 | method(): boolean; 3 | } 4 | -------------------------------------------------------------------------------- /examples/test-definition/example.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-expect/HEAD/examples/test-definition/example.js -------------------------------------------------------------------------------- /examples/test-definition/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-expect/HEAD/examples/test-definition/package-lock.json -------------------------------------------------------------------------------- /examples/test-definition/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-expect/HEAD/examples/test-definition/package.json -------------------------------------------------------------------------------- /examples/test-definition/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-expect/HEAD/examples/test-definition/test.ts -------------------------------------------------------------------------------- /examples/test-definition/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-expect/HEAD/examples/test-definition/tsconfig.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-expect/HEAD/package.json -------------------------------------------------------------------------------- /src/__fixtures__/.gitignore: -------------------------------------------------------------------------------- 1 | *.js 2 | -------------------------------------------------------------------------------- /src/__fixtures__/test-import-spread.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-expect/HEAD/src/__fixtures__/test-import-spread.ts -------------------------------------------------------------------------------- /src/__fixtures__/test-import-star.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-expect/HEAD/src/__fixtures__/test-import-star.ts -------------------------------------------------------------------------------- /src/__fixtures__/test-var-shadow.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-expect/HEAD/src/__fixtures__/test-var-shadow.ts -------------------------------------------------------------------------------- /src/__snapshots__/transform.spec.ts.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-expect/HEAD/src/__snapshots__/transform.spec.ts.snap -------------------------------------------------------------------------------- /src/index.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-expect/HEAD/src/index.spec.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-expect/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/transform.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-expect/HEAD/src/transform.spec.ts -------------------------------------------------------------------------------- /src/transform.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-expect/HEAD/src/transform.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/ts-expect/HEAD/tsconfig.json --------------------------------------------------------------------------------