├── .editorconfig ├── .gitignore ├── README.md └── answers ├── advanced.md ├── general.md ├── more.md ├── syntax.md └── ts-js.md /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedorovAlexander/typescript-interview-questions-ru/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .vscode 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedorovAlexander/typescript-interview-questions-ru/HEAD/README.md -------------------------------------------------------------------------------- /answers/advanced.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedorovAlexander/typescript-interview-questions-ru/HEAD/answers/advanced.md -------------------------------------------------------------------------------- /answers/general.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedorovAlexander/typescript-interview-questions-ru/HEAD/answers/general.md -------------------------------------------------------------------------------- /answers/more.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedorovAlexander/typescript-interview-questions-ru/HEAD/answers/more.md -------------------------------------------------------------------------------- /answers/syntax.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedorovAlexander/typescript-interview-questions-ru/HEAD/answers/syntax.md -------------------------------------------------------------------------------- /answers/ts-js.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedorovAlexander/typescript-interview-questions-ru/HEAD/answers/ts-js.md --------------------------------------------------------------------------------