├── README.md ├── index.html ├── index.ts ├── package.json ├── style.css └── tsconfig.json /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TreeWhispererA/TypeScript-Advanced-Tips/HEAD/README.md -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- 1 |
-------------------------------------------------------------------------------- /index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TreeWhispererA/TypeScript-Advanced-Tips/HEAD/index.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TreeWhispererA/TypeScript-Advanced-Tips/HEAD/package.json -------------------------------------------------------------------------------- /style.css: -------------------------------------------------------------------------------- 1 | h1, h2 { 2 | font-family: Lato; 3 | } -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TreeWhispererA/TypeScript-Advanced-Tips/HEAD/tsconfig.json --------------------------------------------------------------------------------