├── .editorconfig ├── .gitignore ├── package.json ├── src └── demo.ts └── tsconfig.json /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-typescript-tipos-avanzados/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-typescript-tipos-avanzados/HEAD/.gitignore -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-typescript-tipos-avanzados/HEAD/package.json -------------------------------------------------------------------------------- /src/demo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-typescript-tipos-avanzados/HEAD/src/demo.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/curso-typescript-tipos-avanzados/HEAD/tsconfig.json --------------------------------------------------------------------------------