├── .gitignore ├── README.md ├── package.json ├── src ├── album.ts ├── index.js └── utils.js ├── tsconfig.json └── types.d.ts /.gitignore: -------------------------------------------------------------------------------- 1 | album.js 2 | 3 | node_modules 4 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnwithjason/lets-learn-typescript/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnwithjason/lets-learn-typescript/HEAD/package.json -------------------------------------------------------------------------------- /src/album.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnwithjason/lets-learn-typescript/HEAD/src/album.ts -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnwithjason/lets-learn-typescript/HEAD/src/index.js -------------------------------------------------------------------------------- /src/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnwithjason/lets-learn-typescript/HEAD/src/utils.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnwithjason/lets-learn-typescript/HEAD/tsconfig.json -------------------------------------------------------------------------------- /types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnwithjason/lets-learn-typescript/HEAD/types.d.ts --------------------------------------------------------------------------------