├── README.md ├── dist └── index.js ├── src └── index.ts └── tsconfig.json /README.md: -------------------------------------------------------------------------------- 1 | # Type-Script 2 | 3 | Installation 4 |
5 | `npm i -g tsc` 6 | -------------------------------------------------------------------------------- /dist/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sandun-Induranga/Type-Script/HEAD/dist/index.js -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sandun-Induranga/Type-Script/HEAD/src/index.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sandun-Induranga/Type-Script/HEAD/tsconfig.json --------------------------------------------------------------------------------