├── .editorconfig ├── .gitignore ├── .vscode ├── launch.json └── settings.json ├── bs-config.json ├── examples ├── arrow-functions │ ├── index.html │ ├── plnkr.json │ ├── scripts │ │ └── arrow-functions.ts │ └── styles │ │ ├── app.css │ │ └── bootstrap.min.css ├── banking │ ├── index.html │ ├── plnkr.json │ ├── scripts │ │ ├── account.ts │ │ ├── accountList.ts │ │ ├── arrayType.ts │ │ ├── bankingAccount.ts │ │ ├── checkingAccount.ts │ │ ├── constants.ts │ │ ├── iAccount.ts │ │ ├── list.ts │ │ └── savingsAccount.ts │ └── styles │ │ ├── app.css │ │ └── bootstrap.min.css ├── basic-types │ ├── index.html │ ├── plnkr.json │ ├── scripts │ │ └── basicTypes.ts │ └── styles │ │ ├── app.css │ │ └── bootstrap.min.css ├── calculator-jquery │ ├── index.html │ ├── plnkr.json │ ├── scripts │ │ └── calculatorJQuery.ts │ └── styles │ │ ├── app.css │ │ └── bootstrap.min.css ├── calculator │ ├── index.html │ ├── plnkr.json │ ├── scripts │ │ └── calculator.ts │ └── styles │ │ ├── app.css │ │ └── bootstrap.min.css ├── class-extension │ ├── index.html │ ├── plnkr.json │ └── scripts │ │ └── classExtension.ts ├── classes │ ├── index.html │ ├── plnkr.json │ └── scripts │ │ └── definingClasses.ts ├── compounder │ ├── index.html │ ├── plnkr.json │ ├── scripts │ │ └── compounder.ts │ └── styles │ │ ├── app.css │ │ └── bootstrap.min.css ├── cookbook │ ├── .vscode │ │ └── settings.json │ ├── package-lock.json │ ├── package.json │ ├── readme.md │ ├── src │ │ ├── images │ │ │ └── cutlery.png │ │ ├── index.html │ │ ├── json │ │ │ └── recipeTypes.json │ │ ├── scripts │ │ │ ├── baseRecipeCategory.ts │ │ │ ├── bootstrapper.ts │ │ │ ├── foodGroup.ts │ │ │ ├── ingredient.ts │ │ │ ├── interfaces.ts │ │ │ ├── recipeCategories.ts │ │ │ ├── recipeCategory.ts │ │ │ ├── recipeCategorySummary.ts │ │ │ ├── recipeExample.ts │ │ │ ├── recipeLoader.ts │ │ │ └── renderer.ts │ │ └── styles │ │ │ └── app.css │ ├── superstatic.json │ └── tsconfig.json ├── generics │ ├── index.html │ ├── plnkr.json │ ├── scripts │ │ └── generics.ts │ └── styles │ │ ├── app.css │ │ └── bootstrap.min.css ├── greeter │ ├── index.html │ ├── plnkr.json │ ├── scripts │ │ └── greeter.ts │ └── styles │ │ ├── app.css │ │ └── bootstrap.min.css ├── interfaces │ ├── index.html │ ├── plnkr.json │ └── scripts │ │ └── interfaces.ts ├── modules-barrels │ ├── index.html │ ├── scripts │ │ ├── account │ │ │ ├── accountList.ts │ │ │ ├── bankingAccount.ts │ │ │ ├── checkingAccount.ts │ │ │ ├── iAccount.ts │ │ │ ├── index.ts │ │ │ └── savingsAccount.ts │ │ ├── constants.ts │ │ └── main.ts │ └── styles │ │ ├── app.css │ │ └── bootstrap.min.css ├── modules-simple │ ├── index.html │ ├── scripts │ │ ├── bankingAccount.ts │ │ ├── iAccount.ts │ │ └── main.ts │ └── styles │ │ ├── app.css │ │ └── bootstrap.min.css ├── modules-starter │ ├── index.html │ ├── scripts │ │ ├── conference.ts │ │ ├── main.ts │ │ └── speaker.ts │ └── styles │ │ ├── app.css │ │ └── bootstrap.min.css ├── modules │ ├── index.html │ ├── scripts │ │ ├── accountList.ts │ │ ├── arrayType.js.map │ │ ├── bankingAccount.ts │ │ ├── checkingAccount.ts │ │ ├── constants.ts │ │ ├── iAccount.ts │ │ ├── main.ts │ │ └── savingsAccount.ts │ └── styles │ │ ├── app.css │ │ └── bootstrap.min.css ├── object-oriented │ ├── 1 - Course Overview │ │ └── readme.md │ ├── 2 - Introduction to Object-Oriented Programming in TypeScript │ │ ├── .vscode │ │ │ ├── launch.json │ │ │ └── settings.json │ │ ├── dist │ │ │ └── bundle.js │ │ ├── index.html │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── readme.md │ │ ├── src │ │ │ ├── main.js │ │ │ ├── main.js.map │ │ │ ├── main.ts │ │ │ └── styles │ │ │ │ └── styles.css │ │ ├── tsconfig.json │ │ └── webpack.config.js │ ├── 3 - Classes and Objects │ │ ├── .vscode │ │ │ ├── launch.json │ │ │ └── settings.json │ │ ├── dist │ │ │ └── bundle.js │ │ ├── index.html │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── readme.md │ │ ├── src │ │ │ ├── main.js │ │ │ ├── main.js.map │ │ │ ├── main.ts │ │ │ ├── scripts │ │ │ │ ├── checking-account.ts │ │ │ │ └── renderer.ts │ │ │ └── styles │ │ │ │ └── styles.css │ │ ├── tsconfig.json │ │ └── webpack.config.js │ ├── 4 - Inheritance and Abstraction │ │ ├── .vscode │ │ │ ├── launch.json │ │ │ └── settings.json │ │ ├── dist │ │ │ └── bundle.js │ │ ├── index.html │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── readme.md │ │ ├── src │ │ │ ├── main.js │ │ │ ├── main.js.map │ │ │ ├── main.ts │ │ │ ├── scripts │ │ │ │ ├── account-list.ts │ │ │ │ ├── bank-account.ts │ │ │ │ ├── checking-account.ts │ │ │ │ ├── enums.ts │ │ │ │ ├── renderer.ts │ │ │ │ └── savings-account.ts │ │ │ └── styles │ │ │ │ └── styles.css │ │ ├── tsconfig.json │ │ └── webpack.config.js │ ├── 5 - Interfaces and Polymorphism │ │ ├── .vscode │ │ │ ├── launch.json │ │ │ └── settings.json │ │ ├── data.json │ │ ├── dist │ │ │ └── bundle.js │ │ ├── index.html │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── readme.md │ │ ├── src │ │ │ ├── images │ │ │ │ ├── acmebank.afphoto │ │ │ │ ├── acmebank.jpg │ │ │ │ ├── atm.jpg │ │ │ │ ├── checking.jpg │ │ │ │ └── savings.jpg │ │ │ ├── main.js │ │ │ ├── main.js.map │ │ │ ├── main.ts │ │ │ ├── scripts │ │ │ │ ├── account-list.ts │ │ │ │ ├── atm.ts │ │ │ │ ├── bank-account.ts │ │ │ │ ├── checking-account.ts │ │ │ │ ├── constants.ts │ │ │ │ ├── enums.ts │ │ │ │ ├── interfaces.ts │ │ │ │ ├── renderer.ts │ │ │ │ └── savings-account.ts │ │ │ └── styles │ │ │ │ └── styles.css │ │ ├── tsconfig.json │ │ └── webpack.config.js │ ├── 6 - Putting It All Together │ │ └── readme.md │ └── solution │ │ ├── .vscode │ │ ├── launch.json │ │ └── settings.json │ │ ├── data.json │ │ ├── dist │ │ └── bundle.js │ │ ├── index.html │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── readme.md │ │ ├── src │ │ ├── images │ │ │ ├── acmebank.afphoto │ │ │ ├── acmebank.jpg │ │ │ ├── atm.jpg │ │ │ ├── checking.jpg │ │ │ └── savings.jpg │ │ ├── main.js │ │ ├── main.js.map │ │ ├── main.ts │ │ ├── scripts │ │ │ ├── account-list.ts │ │ │ ├── atm.ts │ │ │ ├── bank-account.ts │ │ │ ├── checking-account.ts │ │ │ ├── constants.ts │ │ │ ├── enums.ts │ │ │ ├── interfaces.ts │ │ │ ├── renderer.ts │ │ │ └── savings-account.ts │ │ └── styles │ │ │ └── styles.css │ │ ├── tsconfig.json │ │ └── webpack.config.js ├── optional-default-parameters │ ├── index.html │ ├── plnkr.json │ ├── scripts │ │ └── optionalDefaultRestParameters.ts │ └── styles │ │ ├── app.css │ │ └── bootstrap.min.css ├── parameter-types │ ├── index.html │ ├── plnkr.json │ ├── scripts │ │ └── parameterTypes.ts │ └── styles │ │ ├── app.css │ │ └── bootstrap.min.css ├── scratchpad │ ├── demo.js │ ├── demo.js.map │ └── demo.ts └── unions-aliases-const-enums │ ├── index.html │ ├── plnkr.json │ ├── scripts │ ├── constEnums.ts │ ├── typeAliases.ts │ └── unionTypes.ts │ └── styles │ ├── app.css │ └── bootstrap.min.css ├── index.html ├── package.json ├── readme.md └── tsconfig.json /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/TypeScriptDemos/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/TypeScriptDemos/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/TypeScriptDemos/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/TypeScriptDemos/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /bs-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/TypeScriptDemos/HEAD/bs-config.json -------------------------------------------------------------------------------- /examples/arrow-functions/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/TypeScriptDemos/HEAD/examples/arrow-functions/index.html -------------------------------------------------------------------------------- /examples/arrow-functions/plnkr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/TypeScriptDemos/HEAD/examples/arrow-functions/plnkr.json -------------------------------------------------------------------------------- /examples/arrow-functions/scripts/arrow-functions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/TypeScriptDemos/HEAD/examples/arrow-functions/scripts/arrow-functions.ts -------------------------------------------------------------------------------- /examples/arrow-functions/styles/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/TypeScriptDemos/HEAD/examples/arrow-functions/styles/app.css -------------------------------------------------------------------------------- /examples/arrow-functions/styles/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/TypeScriptDemos/HEAD/examples/arrow-functions/styles/bootstrap.min.css -------------------------------------------------------------------------------- /examples/banking/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/TypeScriptDemos/HEAD/examples/banking/index.html -------------------------------------------------------------------------------- /examples/banking/plnkr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/TypeScriptDemos/HEAD/examples/banking/plnkr.json -------------------------------------------------------------------------------- /examples/banking/scripts/account.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/TypeScriptDemos/HEAD/examples/banking/scripts/account.ts -------------------------------------------------------------------------------- /examples/banking/scripts/accountList.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/TypeScriptDemos/HEAD/examples/banking/scripts/accountList.ts -------------------------------------------------------------------------------- /examples/banking/scripts/arrayType.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/TypeScriptDemos/HEAD/examples/banking/scripts/arrayType.ts -------------------------------------------------------------------------------- /examples/banking/scripts/bankingAccount.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/TypeScriptDemos/HEAD/examples/banking/scripts/bankingAccount.ts -------------------------------------------------------------------------------- /examples/banking/scripts/checkingAccount.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/TypeScriptDemos/HEAD/examples/banking/scripts/checkingAccount.ts -------------------------------------------------------------------------------- /examples/banking/scripts/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/TypeScriptDemos/HEAD/examples/banking/scripts/constants.ts -------------------------------------------------------------------------------- /examples/banking/scripts/iAccount.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/TypeScriptDemos/HEAD/examples/banking/scripts/iAccount.ts -------------------------------------------------------------------------------- /examples/banking/scripts/list.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/TypeScriptDemos/HEAD/examples/banking/scripts/list.ts -------------------------------------------------------------------------------- /examples/banking/scripts/savingsAccount.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/TypeScriptDemos/HEAD/examples/banking/scripts/savingsAccount.ts -------------------------------------------------------------------------------- /examples/banking/styles/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/TypeScriptDemos/HEAD/examples/banking/styles/app.css -------------------------------------------------------------------------------- /examples/banking/styles/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/TypeScriptDemos/HEAD/examples/banking/styles/bootstrap.min.css -------------------------------------------------------------------------------- /examples/basic-types/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/TypeScriptDemos/HEAD/examples/basic-types/index.html -------------------------------------------------------------------------------- /examples/basic-types/plnkr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/TypeScriptDemos/HEAD/examples/basic-types/plnkr.json -------------------------------------------------------------------------------- /examples/basic-types/scripts/basicTypes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/TypeScriptDemos/HEAD/examples/basic-types/scripts/basicTypes.ts -------------------------------------------------------------------------------- /examples/basic-types/styles/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/TypeScriptDemos/HEAD/examples/basic-types/styles/app.css -------------------------------------------------------------------------------- /examples/basic-types/styles/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/TypeScriptDemos/HEAD/examples/basic-types/styles/bootstrap.min.css -------------------------------------------------------------------------------- /examples/calculator-jquery/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/TypeScriptDemos/HEAD/examples/calculator-jquery/index.html -------------------------------------------------------------------------------- /examples/calculator-jquery/plnkr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/TypeScriptDemos/HEAD/examples/calculator-jquery/plnkr.json -------------------------------------------------------------------------------- /examples/calculator-jquery/scripts/calculatorJQuery.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/TypeScriptDemos/HEAD/examples/calculator-jquery/scripts/calculatorJQuery.ts -------------------------------------------------------------------------------- /examples/calculator-jquery/styles/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/TypeScriptDemos/HEAD/examples/calculator-jquery/styles/app.css -------------------------------------------------------------------------------- /examples/calculator-jquery/styles/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/TypeScriptDemos/HEAD/examples/calculator-jquery/styles/bootstrap.min.css -------------------------------------------------------------------------------- /examples/calculator/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/TypeScriptDemos/HEAD/examples/calculator/index.html -------------------------------------------------------------------------------- /examples/calculator/plnkr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/TypeScriptDemos/HEAD/examples/calculator/plnkr.json -------------------------------------------------------------------------------- /examples/calculator/scripts/calculator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/TypeScriptDemos/HEAD/examples/calculator/scripts/calculator.ts -------------------------------------------------------------------------------- /examples/calculator/styles/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/TypeScriptDemos/HEAD/examples/calculator/styles/app.css -------------------------------------------------------------------------------- /examples/calculator/styles/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/TypeScriptDemos/HEAD/examples/calculator/styles/bootstrap.min.css -------------------------------------------------------------------------------- /examples/class-extension/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/TypeScriptDemos/HEAD/examples/class-extension/index.html -------------------------------------------------------------------------------- /examples/class-extension/plnkr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/TypeScriptDemos/HEAD/examples/class-extension/plnkr.json -------------------------------------------------------------------------------- /examples/class-extension/scripts/classExtension.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/TypeScriptDemos/HEAD/examples/class-extension/scripts/classExtension.ts -------------------------------------------------------------------------------- /examples/classes/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/TypeScriptDemos/HEAD/examples/classes/index.html -------------------------------------------------------------------------------- /examples/classes/plnkr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/TypeScriptDemos/HEAD/examples/classes/plnkr.json -------------------------------------------------------------------------------- /examples/classes/scripts/definingClasses.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/TypeScriptDemos/HEAD/examples/classes/scripts/definingClasses.ts -------------------------------------------------------------------------------- /examples/compounder/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/TypeScriptDemos/HEAD/examples/compounder/index.html -------------------------------------------------------------------------------- /examples/compounder/plnkr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/TypeScriptDemos/HEAD/examples/compounder/plnkr.json -------------------------------------------------------------------------------- /examples/compounder/scripts/compounder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/TypeScriptDemos/HEAD/examples/compounder/scripts/compounder.ts -------------------------------------------------------------------------------- /examples/compounder/styles/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/TypeScriptDemos/HEAD/examples/compounder/styles/app.css -------------------------------------------------------------------------------- /examples/compounder/styles/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/TypeScriptDemos/HEAD/examples/compounder/styles/bootstrap.min.css -------------------------------------------------------------------------------- /examples/cookbook/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/TypeScriptDemos/HEAD/examples/cookbook/.vscode/settings.json -------------------------------------------------------------------------------- /examples/cookbook/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/TypeScriptDemos/HEAD/examples/cookbook/package-lock.json -------------------------------------------------------------------------------- /examples/cookbook/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/TypeScriptDemos/HEAD/examples/cookbook/package.json -------------------------------------------------------------------------------- /examples/cookbook/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/TypeScriptDemos/HEAD/examples/cookbook/readme.md -------------------------------------------------------------------------------- /examples/cookbook/src/images/cutlery.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/TypeScriptDemos/HEAD/examples/cookbook/src/images/cutlery.png -------------------------------------------------------------------------------- /examples/cookbook/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/TypeScriptDemos/HEAD/examples/cookbook/src/index.html -------------------------------------------------------------------------------- /examples/cookbook/src/json/recipeTypes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/TypeScriptDemos/HEAD/examples/cookbook/src/json/recipeTypes.json -------------------------------------------------------------------------------- /examples/cookbook/src/scripts/baseRecipeCategory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/TypeScriptDemos/HEAD/examples/cookbook/src/scripts/baseRecipeCategory.ts -------------------------------------------------------------------------------- /examples/cookbook/src/scripts/bootstrapper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/TypeScriptDemos/HEAD/examples/cookbook/src/scripts/bootstrapper.ts -------------------------------------------------------------------------------- /examples/cookbook/src/scripts/foodGroup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/TypeScriptDemos/HEAD/examples/cookbook/src/scripts/foodGroup.ts -------------------------------------------------------------------------------- /examples/cookbook/src/scripts/ingredient.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/TypeScriptDemos/HEAD/examples/cookbook/src/scripts/ingredient.ts -------------------------------------------------------------------------------- /examples/cookbook/src/scripts/interfaces.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/TypeScriptDemos/HEAD/examples/cookbook/src/scripts/interfaces.ts -------------------------------------------------------------------------------- /examples/cookbook/src/scripts/recipeCategories.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/TypeScriptDemos/HEAD/examples/cookbook/src/scripts/recipeCategories.ts -------------------------------------------------------------------------------- /examples/cookbook/src/scripts/recipeCategory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/TypeScriptDemos/HEAD/examples/cookbook/src/scripts/recipeCategory.ts -------------------------------------------------------------------------------- /examples/cookbook/src/scripts/recipeCategorySummary.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/TypeScriptDemos/HEAD/examples/cookbook/src/scripts/recipeCategorySummary.ts -------------------------------------------------------------------------------- /examples/cookbook/src/scripts/recipeExample.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/TypeScriptDemos/HEAD/examples/cookbook/src/scripts/recipeExample.ts -------------------------------------------------------------------------------- /examples/cookbook/src/scripts/recipeLoader.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/TypeScriptDemos/HEAD/examples/cookbook/src/scripts/recipeLoader.ts -------------------------------------------------------------------------------- /examples/cookbook/src/scripts/renderer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/TypeScriptDemos/HEAD/examples/cookbook/src/scripts/renderer.ts -------------------------------------------------------------------------------- /examples/cookbook/src/styles/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/TypeScriptDemos/HEAD/examples/cookbook/src/styles/app.css -------------------------------------------------------------------------------- /examples/cookbook/superstatic.json: -------------------------------------------------------------------------------- 1 | { 2 | "public": "src" 3 | } 4 | -------------------------------------------------------------------------------- /examples/cookbook/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/TypeScriptDemos/HEAD/examples/cookbook/tsconfig.json -------------------------------------------------------------------------------- /examples/generics/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/TypeScriptDemos/HEAD/examples/generics/index.html -------------------------------------------------------------------------------- /examples/generics/plnkr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/TypeScriptDemos/HEAD/examples/generics/plnkr.json -------------------------------------------------------------------------------- /examples/generics/scripts/generics.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/TypeScriptDemos/HEAD/examples/generics/scripts/generics.ts -------------------------------------------------------------------------------- /examples/generics/styles/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/TypeScriptDemos/HEAD/examples/generics/styles/app.css -------------------------------------------------------------------------------- /examples/generics/styles/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/TypeScriptDemos/HEAD/examples/generics/styles/bootstrap.min.css -------------------------------------------------------------------------------- /examples/greeter/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/TypeScriptDemos/HEAD/examples/greeter/index.html -------------------------------------------------------------------------------- /examples/greeter/plnkr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/TypeScriptDemos/HEAD/examples/greeter/plnkr.json -------------------------------------------------------------------------------- /examples/greeter/scripts/greeter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/TypeScriptDemos/HEAD/examples/greeter/scripts/greeter.ts -------------------------------------------------------------------------------- /examples/greeter/styles/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/TypeScriptDemos/HEAD/examples/greeter/styles/app.css -------------------------------------------------------------------------------- /examples/greeter/styles/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/TypeScriptDemos/HEAD/examples/greeter/styles/bootstrap.min.css -------------------------------------------------------------------------------- /examples/interfaces/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/TypeScriptDemos/HEAD/examples/interfaces/index.html -------------------------------------------------------------------------------- /examples/interfaces/plnkr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/TypeScriptDemos/HEAD/examples/interfaces/plnkr.json -------------------------------------------------------------------------------- /examples/interfaces/scripts/interfaces.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/TypeScriptDemos/HEAD/examples/interfaces/scripts/interfaces.ts -------------------------------------------------------------------------------- /examples/modules-barrels/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/TypeScriptDemos/HEAD/examples/modules-barrels/index.html -------------------------------------------------------------------------------- /examples/modules-barrels/scripts/account/accountList.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/TypeScriptDemos/HEAD/examples/modules-barrels/scripts/account/accountList.ts -------------------------------------------------------------------------------- /examples/modules-barrels/scripts/account/bankingAccount.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/TypeScriptDemos/HEAD/examples/modules-barrels/scripts/account/bankingAccount.ts -------------------------------------------------------------------------------- /examples/modules-barrels/scripts/account/checkingAccount.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/TypeScriptDemos/HEAD/examples/modules-barrels/scripts/account/checkingAccount.ts -------------------------------------------------------------------------------- /examples/modules-barrels/scripts/account/iAccount.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/TypeScriptDemos/HEAD/examples/modules-barrels/scripts/account/iAccount.ts -------------------------------------------------------------------------------- /examples/modules-barrels/scripts/account/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/TypeScriptDemos/HEAD/examples/modules-barrels/scripts/account/index.ts -------------------------------------------------------------------------------- /examples/modules-barrels/scripts/account/savingsAccount.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/TypeScriptDemos/HEAD/examples/modules-barrels/scripts/account/savingsAccount.ts -------------------------------------------------------------------------------- /examples/modules-barrels/scripts/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/TypeScriptDemos/HEAD/examples/modules-barrels/scripts/constants.ts -------------------------------------------------------------------------------- /examples/modules-barrels/scripts/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/TypeScriptDemos/HEAD/examples/modules-barrels/scripts/main.ts -------------------------------------------------------------------------------- /examples/modules-barrels/styles/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/TypeScriptDemos/HEAD/examples/modules-barrels/styles/app.css -------------------------------------------------------------------------------- /examples/modules-barrels/styles/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/TypeScriptDemos/HEAD/examples/modules-barrels/styles/bootstrap.min.css -------------------------------------------------------------------------------- /examples/modules-simple/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/TypeScriptDemos/HEAD/examples/modules-simple/index.html -------------------------------------------------------------------------------- /examples/modules-simple/scripts/bankingAccount.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/TypeScriptDemos/HEAD/examples/modules-simple/scripts/bankingAccount.ts -------------------------------------------------------------------------------- /examples/modules-simple/scripts/iAccount.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/TypeScriptDemos/HEAD/examples/modules-simple/scripts/iAccount.ts -------------------------------------------------------------------------------- /examples/modules-simple/scripts/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/TypeScriptDemos/HEAD/examples/modules-simple/scripts/main.ts -------------------------------------------------------------------------------- /examples/modules-simple/styles/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/TypeScriptDemos/HEAD/examples/modules-simple/styles/app.css -------------------------------------------------------------------------------- /examples/modules-simple/styles/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/TypeScriptDemos/HEAD/examples/modules-simple/styles/bootstrap.min.css -------------------------------------------------------------------------------- /examples/modules-starter/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/TypeScriptDemos/HEAD/examples/modules-starter/index.html -------------------------------------------------------------------------------- /examples/modules-starter/scripts/conference.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/TypeScriptDemos/HEAD/examples/modules-starter/scripts/conference.ts -------------------------------------------------------------------------------- /examples/modules-starter/scripts/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/TypeScriptDemos/HEAD/examples/modules-starter/scripts/main.ts -------------------------------------------------------------------------------- /examples/modules-starter/scripts/speaker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/TypeScriptDemos/HEAD/examples/modules-starter/scripts/speaker.ts -------------------------------------------------------------------------------- /examples/modules-starter/styles/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/TypeScriptDemos/HEAD/examples/modules-starter/styles/app.css -------------------------------------------------------------------------------- /examples/modules-starter/styles/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/TypeScriptDemos/HEAD/examples/modules-starter/styles/bootstrap.min.css -------------------------------------------------------------------------------- /examples/modules/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/TypeScriptDemos/HEAD/examples/modules/index.html -------------------------------------------------------------------------------- /examples/modules/scripts/accountList.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/TypeScriptDemos/HEAD/examples/modules/scripts/accountList.ts -------------------------------------------------------------------------------- /examples/modules/scripts/arrayType.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/TypeScriptDemos/HEAD/examples/modules/scripts/arrayType.js.map -------------------------------------------------------------------------------- /examples/modules/scripts/bankingAccount.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/TypeScriptDemos/HEAD/examples/modules/scripts/bankingAccount.ts -------------------------------------------------------------------------------- /examples/modules/scripts/checkingAccount.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/TypeScriptDemos/HEAD/examples/modules/scripts/checkingAccount.ts -------------------------------------------------------------------------------- /examples/modules/scripts/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/TypeScriptDemos/HEAD/examples/modules/scripts/constants.ts -------------------------------------------------------------------------------- /examples/modules/scripts/iAccount.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/TypeScriptDemos/HEAD/examples/modules/scripts/iAccount.ts -------------------------------------------------------------------------------- /examples/modules/scripts/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/TypeScriptDemos/HEAD/examples/modules/scripts/main.ts -------------------------------------------------------------------------------- /examples/modules/scripts/savingsAccount.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/TypeScriptDemos/HEAD/examples/modules/scripts/savingsAccount.ts -------------------------------------------------------------------------------- /examples/modules/styles/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/TypeScriptDemos/HEAD/examples/modules/styles/app.css -------------------------------------------------------------------------------- /examples/modules/styles/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/TypeScriptDemos/HEAD/examples/modules/styles/bootstrap.min.css -------------------------------------------------------------------------------- /examples/object-oriented/1 - Course Overview/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/TypeScriptDemos/HEAD/examples/object-oriented/1 - Course Overview/readme.md -------------------------------------------------------------------------------- /examples/object-oriented/2 - Introduction to Object-Oriented Programming in TypeScript/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/TypeScriptDemos/HEAD/examples/object-oriented/2 - Introduction to Object-Oriented Programming in TypeScript/.vscode/launch.json -------------------------------------------------------------------------------- /examples/object-oriented/2 - Introduction to Object-Oriented Programming in TypeScript/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/TypeScriptDemos/HEAD/examples/object-oriented/2 - Introduction to Object-Oriented Programming in TypeScript/.vscode/settings.json -------------------------------------------------------------------------------- /examples/object-oriented/2 - Introduction to Object-Oriented Programming in TypeScript/dist/bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/TypeScriptDemos/HEAD/examples/object-oriented/2 - Introduction to Object-Oriented Programming in TypeScript/dist/bundle.js -------------------------------------------------------------------------------- /examples/object-oriented/2 - Introduction to Object-Oriented Programming in TypeScript/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/TypeScriptDemos/HEAD/examples/object-oriented/2 - Introduction to Object-Oriented Programming in TypeScript/index.html -------------------------------------------------------------------------------- /examples/object-oriented/2 - Introduction to Object-Oriented Programming in TypeScript/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/TypeScriptDemos/HEAD/examples/object-oriented/2 - Introduction to Object-Oriented Programming in TypeScript/package-lock.json -------------------------------------------------------------------------------- /examples/object-oriented/2 - Introduction to Object-Oriented Programming in TypeScript/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/TypeScriptDemos/HEAD/examples/object-oriented/2 - Introduction to Object-Oriented Programming in TypeScript/package.json -------------------------------------------------------------------------------- /examples/object-oriented/2 - Introduction to Object-Oriented Programming in TypeScript/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/TypeScriptDemos/HEAD/examples/object-oriented/2 - Introduction to Object-Oriented Programming in TypeScript/readme.md -------------------------------------------------------------------------------- /examples/object-oriented/2 - Introduction to Object-Oriented Programming in TypeScript/src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/TypeScriptDemos/HEAD/examples/object-oriented/2 - Introduction to Object-Oriented Programming in TypeScript/src/main.js -------------------------------------------------------------------------------- /examples/object-oriented/2 - Introduction to Object-Oriented Programming in TypeScript/src/main.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/TypeScriptDemos/HEAD/examples/object-oriented/2 - Introduction to Object-Oriented Programming in TypeScript/src/main.js.map -------------------------------------------------------------------------------- /examples/object-oriented/2 - Introduction to Object-Oriented Programming in TypeScript/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/TypeScriptDemos/HEAD/examples/object-oriented/2 - Introduction to Object-Oriented Programming in TypeScript/src/main.ts -------------------------------------------------------------------------------- /examples/object-oriented/2 - Introduction to Object-Oriented Programming in TypeScript/src/styles/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/TypeScriptDemos/HEAD/examples/object-oriented/2 - Introduction to Object-Oriented Programming in TypeScript/src/styles/styles.css -------------------------------------------------------------------------------- /examples/object-oriented/2 - Introduction to Object-Oriented Programming in TypeScript/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/TypeScriptDemos/HEAD/examples/object-oriented/2 - Introduction to Object-Oriented Programming in TypeScript/tsconfig.json -------------------------------------------------------------------------------- /examples/object-oriented/2 - Introduction to Object-Oriented Programming in TypeScript/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/TypeScriptDemos/HEAD/examples/object-oriented/2 - Introduction to Object-Oriented Programming in TypeScript/webpack.config.js -------------------------------------------------------------------------------- /examples/object-oriented/3 - Classes and Objects/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/TypeScriptDemos/HEAD/examples/object-oriented/3 - Classes and Objects/.vscode/launch.json -------------------------------------------------------------------------------- /examples/object-oriented/3 - Classes and Objects/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/TypeScriptDemos/HEAD/examples/object-oriented/3 - Classes and Objects/.vscode/settings.json -------------------------------------------------------------------------------- /examples/object-oriented/3 - Classes and Objects/dist/bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/TypeScriptDemos/HEAD/examples/object-oriented/3 - Classes and Objects/dist/bundle.js -------------------------------------------------------------------------------- /examples/object-oriented/3 - Classes and Objects/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/TypeScriptDemos/HEAD/examples/object-oriented/3 - Classes and Objects/index.html -------------------------------------------------------------------------------- /examples/object-oriented/3 - Classes and Objects/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/TypeScriptDemos/HEAD/examples/object-oriented/3 - Classes and Objects/package-lock.json -------------------------------------------------------------------------------- /examples/object-oriented/3 - Classes and Objects/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/TypeScriptDemos/HEAD/examples/object-oriented/3 - Classes and Objects/package.json -------------------------------------------------------------------------------- /examples/object-oriented/3 - Classes and Objects/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/TypeScriptDemos/HEAD/examples/object-oriented/3 - Classes and Objects/readme.md -------------------------------------------------------------------------------- /examples/object-oriented/3 - Classes and Objects/src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/TypeScriptDemos/HEAD/examples/object-oriented/3 - Classes and Objects/src/main.js -------------------------------------------------------------------------------- /examples/object-oriented/3 - Classes and Objects/src/main.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/TypeScriptDemos/HEAD/examples/object-oriented/3 - Classes and Objects/src/main.js.map -------------------------------------------------------------------------------- /examples/object-oriented/3 - Classes and Objects/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/TypeScriptDemos/HEAD/examples/object-oriented/3 - Classes and Objects/src/main.ts -------------------------------------------------------------------------------- /examples/object-oriented/3 - Classes and Objects/src/scripts/checking-account.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/TypeScriptDemos/HEAD/examples/object-oriented/3 - Classes and Objects/src/scripts/checking-account.ts -------------------------------------------------------------------------------- /examples/object-oriented/3 - Classes and Objects/src/scripts/renderer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/TypeScriptDemos/HEAD/examples/object-oriented/3 - Classes and Objects/src/scripts/renderer.ts -------------------------------------------------------------------------------- /examples/object-oriented/3 - Classes and Objects/src/styles/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/TypeScriptDemos/HEAD/examples/object-oriented/3 - Classes and Objects/src/styles/styles.css -------------------------------------------------------------------------------- /examples/object-oriented/3 - Classes and Objects/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/TypeScriptDemos/HEAD/examples/object-oriented/3 - Classes and Objects/tsconfig.json -------------------------------------------------------------------------------- /examples/object-oriented/3 - Classes and Objects/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/TypeScriptDemos/HEAD/examples/object-oriented/3 - Classes and Objects/webpack.config.js -------------------------------------------------------------------------------- /examples/object-oriented/4 - Inheritance and Abstraction/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/TypeScriptDemos/HEAD/examples/object-oriented/4 - Inheritance and Abstraction/.vscode/launch.json -------------------------------------------------------------------------------- /examples/object-oriented/4 - Inheritance and Abstraction/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/TypeScriptDemos/HEAD/examples/object-oriented/4 - Inheritance and Abstraction/.vscode/settings.json -------------------------------------------------------------------------------- /examples/object-oriented/4 - Inheritance and Abstraction/dist/bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/TypeScriptDemos/HEAD/examples/object-oriented/4 - Inheritance and Abstraction/dist/bundle.js -------------------------------------------------------------------------------- /examples/object-oriented/4 - Inheritance and Abstraction/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/TypeScriptDemos/HEAD/examples/object-oriented/4 - Inheritance and Abstraction/index.html -------------------------------------------------------------------------------- /examples/object-oriented/4 - Inheritance and Abstraction/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/TypeScriptDemos/HEAD/examples/object-oriented/4 - Inheritance and Abstraction/package-lock.json -------------------------------------------------------------------------------- /examples/object-oriented/4 - Inheritance and Abstraction/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/TypeScriptDemos/HEAD/examples/object-oriented/4 - Inheritance and Abstraction/package.json -------------------------------------------------------------------------------- /examples/object-oriented/4 - Inheritance and Abstraction/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/TypeScriptDemos/HEAD/examples/object-oriented/4 - Inheritance and Abstraction/readme.md -------------------------------------------------------------------------------- /examples/object-oriented/4 - Inheritance and Abstraction/src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/TypeScriptDemos/HEAD/examples/object-oriented/4 - Inheritance and Abstraction/src/main.js -------------------------------------------------------------------------------- /examples/object-oriented/4 - Inheritance and Abstraction/src/main.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/TypeScriptDemos/HEAD/examples/object-oriented/4 - Inheritance and Abstraction/src/main.js.map -------------------------------------------------------------------------------- /examples/object-oriented/4 - Inheritance and Abstraction/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/TypeScriptDemos/HEAD/examples/object-oriented/4 - Inheritance and Abstraction/src/main.ts -------------------------------------------------------------------------------- /examples/object-oriented/4 - Inheritance and Abstraction/src/scripts/account-list.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/TypeScriptDemos/HEAD/examples/object-oriented/4 - Inheritance and Abstraction/src/scripts/account-list.ts -------------------------------------------------------------------------------- /examples/object-oriented/4 - Inheritance and Abstraction/src/scripts/bank-account.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/TypeScriptDemos/HEAD/examples/object-oriented/4 - Inheritance and Abstraction/src/scripts/bank-account.ts -------------------------------------------------------------------------------- /examples/object-oriented/4 - Inheritance and Abstraction/src/scripts/checking-account.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/TypeScriptDemos/HEAD/examples/object-oriented/4 - Inheritance and Abstraction/src/scripts/checking-account.ts -------------------------------------------------------------------------------- /examples/object-oriented/4 - Inheritance and Abstraction/src/scripts/enums.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/TypeScriptDemos/HEAD/examples/object-oriented/4 - Inheritance and Abstraction/src/scripts/enums.ts -------------------------------------------------------------------------------- /examples/object-oriented/4 - Inheritance and Abstraction/src/scripts/renderer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/TypeScriptDemos/HEAD/examples/object-oriented/4 - Inheritance and Abstraction/src/scripts/renderer.ts -------------------------------------------------------------------------------- /examples/object-oriented/4 - Inheritance and Abstraction/src/scripts/savings-account.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/TypeScriptDemos/HEAD/examples/object-oriented/4 - Inheritance and Abstraction/src/scripts/savings-account.ts -------------------------------------------------------------------------------- /examples/object-oriented/4 - Inheritance and Abstraction/src/styles/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/TypeScriptDemos/HEAD/examples/object-oriented/4 - Inheritance and Abstraction/src/styles/styles.css -------------------------------------------------------------------------------- /examples/object-oriented/4 - Inheritance and Abstraction/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/TypeScriptDemos/HEAD/examples/object-oriented/4 - Inheritance and Abstraction/tsconfig.json -------------------------------------------------------------------------------- /examples/object-oriented/4 - Inheritance and Abstraction/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/TypeScriptDemos/HEAD/examples/object-oriented/4 - Inheritance and Abstraction/webpack.config.js -------------------------------------------------------------------------------- /examples/object-oriented/5 - Interfaces and Polymorphism/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/TypeScriptDemos/HEAD/examples/object-oriented/5 - Interfaces and Polymorphism/.vscode/launch.json -------------------------------------------------------------------------------- /examples/object-oriented/5 - Interfaces and Polymorphism/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/TypeScriptDemos/HEAD/examples/object-oriented/5 - Interfaces and Polymorphism/.vscode/settings.json -------------------------------------------------------------------------------- /examples/object-oriented/5 - Interfaces and Polymorphism/data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/TypeScriptDemos/HEAD/examples/object-oriented/5 - Interfaces and Polymorphism/data.json -------------------------------------------------------------------------------- /examples/object-oriented/5 - Interfaces and Polymorphism/dist/bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/TypeScriptDemos/HEAD/examples/object-oriented/5 - Interfaces and Polymorphism/dist/bundle.js -------------------------------------------------------------------------------- /examples/object-oriented/5 - Interfaces and Polymorphism/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/TypeScriptDemos/HEAD/examples/object-oriented/5 - Interfaces and Polymorphism/index.html -------------------------------------------------------------------------------- /examples/object-oriented/5 - Interfaces and Polymorphism/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/TypeScriptDemos/HEAD/examples/object-oriented/5 - Interfaces and Polymorphism/package-lock.json -------------------------------------------------------------------------------- /examples/object-oriented/5 - Interfaces and Polymorphism/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/TypeScriptDemos/HEAD/examples/object-oriented/5 - Interfaces and Polymorphism/package.json -------------------------------------------------------------------------------- /examples/object-oriented/5 - Interfaces and Polymorphism/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/TypeScriptDemos/HEAD/examples/object-oriented/5 - Interfaces and Polymorphism/readme.md -------------------------------------------------------------------------------- /examples/object-oriented/5 - Interfaces and Polymorphism/src/images/acmebank.afphoto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/TypeScriptDemos/HEAD/examples/object-oriented/5 - Interfaces and Polymorphism/src/images/acmebank.afphoto -------------------------------------------------------------------------------- /examples/object-oriented/5 - Interfaces and Polymorphism/src/images/acmebank.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/TypeScriptDemos/HEAD/examples/object-oriented/5 - Interfaces and Polymorphism/src/images/acmebank.jpg -------------------------------------------------------------------------------- /examples/object-oriented/5 - Interfaces and Polymorphism/src/images/atm.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/TypeScriptDemos/HEAD/examples/object-oriented/5 - Interfaces and Polymorphism/src/images/atm.jpg -------------------------------------------------------------------------------- /examples/object-oriented/5 - Interfaces and Polymorphism/src/images/checking.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/TypeScriptDemos/HEAD/examples/object-oriented/5 - Interfaces and Polymorphism/src/images/checking.jpg -------------------------------------------------------------------------------- /examples/object-oriented/5 - Interfaces and Polymorphism/src/images/savings.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/TypeScriptDemos/HEAD/examples/object-oriented/5 - Interfaces and Polymorphism/src/images/savings.jpg -------------------------------------------------------------------------------- /examples/object-oriented/5 - Interfaces and Polymorphism/src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/TypeScriptDemos/HEAD/examples/object-oriented/5 - Interfaces and Polymorphism/src/main.js -------------------------------------------------------------------------------- /examples/object-oriented/5 - Interfaces and Polymorphism/src/main.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/TypeScriptDemos/HEAD/examples/object-oriented/5 - Interfaces and Polymorphism/src/main.js.map -------------------------------------------------------------------------------- /examples/object-oriented/5 - Interfaces and Polymorphism/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/TypeScriptDemos/HEAD/examples/object-oriented/5 - Interfaces and Polymorphism/src/main.ts -------------------------------------------------------------------------------- /examples/object-oriented/5 - Interfaces and Polymorphism/src/scripts/account-list.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/TypeScriptDemos/HEAD/examples/object-oriented/5 - Interfaces and Polymorphism/src/scripts/account-list.ts -------------------------------------------------------------------------------- /examples/object-oriented/5 - Interfaces and Polymorphism/src/scripts/atm.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/TypeScriptDemos/HEAD/examples/object-oriented/5 - Interfaces and Polymorphism/src/scripts/atm.ts -------------------------------------------------------------------------------- /examples/object-oriented/5 - Interfaces and Polymorphism/src/scripts/bank-account.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/TypeScriptDemos/HEAD/examples/object-oriented/5 - Interfaces and Polymorphism/src/scripts/bank-account.ts -------------------------------------------------------------------------------- /examples/object-oriented/5 - Interfaces and Polymorphism/src/scripts/checking-account.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/TypeScriptDemos/HEAD/examples/object-oriented/5 - Interfaces and Polymorphism/src/scripts/checking-account.ts -------------------------------------------------------------------------------- /examples/object-oriented/5 - Interfaces and Polymorphism/src/scripts/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/TypeScriptDemos/HEAD/examples/object-oriented/5 - Interfaces and Polymorphism/src/scripts/constants.ts -------------------------------------------------------------------------------- /examples/object-oriented/5 - Interfaces and Polymorphism/src/scripts/enums.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/TypeScriptDemos/HEAD/examples/object-oriented/5 - Interfaces and Polymorphism/src/scripts/enums.ts -------------------------------------------------------------------------------- /examples/object-oriented/5 - Interfaces and Polymorphism/src/scripts/interfaces.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/TypeScriptDemos/HEAD/examples/object-oriented/5 - Interfaces and Polymorphism/src/scripts/interfaces.ts -------------------------------------------------------------------------------- /examples/object-oriented/5 - Interfaces and Polymorphism/src/scripts/renderer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/TypeScriptDemos/HEAD/examples/object-oriented/5 - Interfaces and Polymorphism/src/scripts/renderer.ts -------------------------------------------------------------------------------- /examples/object-oriented/5 - Interfaces and Polymorphism/src/scripts/savings-account.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/TypeScriptDemos/HEAD/examples/object-oriented/5 - Interfaces and Polymorphism/src/scripts/savings-account.ts -------------------------------------------------------------------------------- /examples/object-oriented/5 - Interfaces and Polymorphism/src/styles/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/TypeScriptDemos/HEAD/examples/object-oriented/5 - Interfaces and Polymorphism/src/styles/styles.css -------------------------------------------------------------------------------- /examples/object-oriented/5 - Interfaces and Polymorphism/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/TypeScriptDemos/HEAD/examples/object-oriented/5 - Interfaces and Polymorphism/tsconfig.json -------------------------------------------------------------------------------- /examples/object-oriented/5 - Interfaces and Polymorphism/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/TypeScriptDemos/HEAD/examples/object-oriented/5 - Interfaces and Polymorphism/webpack.config.js -------------------------------------------------------------------------------- /examples/object-oriented/6 - Putting It All Together/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/TypeScriptDemos/HEAD/examples/object-oriented/6 - Putting It All Together/readme.md -------------------------------------------------------------------------------- /examples/object-oriented/solution/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/TypeScriptDemos/HEAD/examples/object-oriented/solution/.vscode/launch.json -------------------------------------------------------------------------------- /examples/object-oriented/solution/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/TypeScriptDemos/HEAD/examples/object-oriented/solution/.vscode/settings.json -------------------------------------------------------------------------------- /examples/object-oriented/solution/data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/TypeScriptDemos/HEAD/examples/object-oriented/solution/data.json -------------------------------------------------------------------------------- /examples/object-oriented/solution/dist/bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/TypeScriptDemos/HEAD/examples/object-oriented/solution/dist/bundle.js -------------------------------------------------------------------------------- /examples/object-oriented/solution/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/TypeScriptDemos/HEAD/examples/object-oriented/solution/index.html -------------------------------------------------------------------------------- /examples/object-oriented/solution/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/TypeScriptDemos/HEAD/examples/object-oriented/solution/package-lock.json -------------------------------------------------------------------------------- /examples/object-oriented/solution/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/TypeScriptDemos/HEAD/examples/object-oriented/solution/package.json -------------------------------------------------------------------------------- /examples/object-oriented/solution/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/TypeScriptDemos/HEAD/examples/object-oriented/solution/readme.md -------------------------------------------------------------------------------- /examples/object-oriented/solution/src/images/acmebank.afphoto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/TypeScriptDemos/HEAD/examples/object-oriented/solution/src/images/acmebank.afphoto -------------------------------------------------------------------------------- /examples/object-oriented/solution/src/images/acmebank.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/TypeScriptDemos/HEAD/examples/object-oriented/solution/src/images/acmebank.jpg -------------------------------------------------------------------------------- /examples/object-oriented/solution/src/images/atm.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/TypeScriptDemos/HEAD/examples/object-oriented/solution/src/images/atm.jpg -------------------------------------------------------------------------------- /examples/object-oriented/solution/src/images/checking.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/TypeScriptDemos/HEAD/examples/object-oriented/solution/src/images/checking.jpg -------------------------------------------------------------------------------- /examples/object-oriented/solution/src/images/savings.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/TypeScriptDemos/HEAD/examples/object-oriented/solution/src/images/savings.jpg -------------------------------------------------------------------------------- /examples/object-oriented/solution/src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/TypeScriptDemos/HEAD/examples/object-oriented/solution/src/main.js -------------------------------------------------------------------------------- /examples/object-oriented/solution/src/main.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/TypeScriptDemos/HEAD/examples/object-oriented/solution/src/main.js.map -------------------------------------------------------------------------------- /examples/object-oriented/solution/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/TypeScriptDemos/HEAD/examples/object-oriented/solution/src/main.ts -------------------------------------------------------------------------------- /examples/object-oriented/solution/src/scripts/account-list.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/TypeScriptDemos/HEAD/examples/object-oriented/solution/src/scripts/account-list.ts -------------------------------------------------------------------------------- /examples/object-oriented/solution/src/scripts/atm.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/TypeScriptDemos/HEAD/examples/object-oriented/solution/src/scripts/atm.ts -------------------------------------------------------------------------------- /examples/object-oriented/solution/src/scripts/bank-account.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/TypeScriptDemos/HEAD/examples/object-oriented/solution/src/scripts/bank-account.ts -------------------------------------------------------------------------------- /examples/object-oriented/solution/src/scripts/checking-account.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/TypeScriptDemos/HEAD/examples/object-oriented/solution/src/scripts/checking-account.ts -------------------------------------------------------------------------------- /examples/object-oriented/solution/src/scripts/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/TypeScriptDemos/HEAD/examples/object-oriented/solution/src/scripts/constants.ts -------------------------------------------------------------------------------- /examples/object-oriented/solution/src/scripts/enums.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/TypeScriptDemos/HEAD/examples/object-oriented/solution/src/scripts/enums.ts -------------------------------------------------------------------------------- /examples/object-oriented/solution/src/scripts/interfaces.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/TypeScriptDemos/HEAD/examples/object-oriented/solution/src/scripts/interfaces.ts -------------------------------------------------------------------------------- /examples/object-oriented/solution/src/scripts/renderer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/TypeScriptDemos/HEAD/examples/object-oriented/solution/src/scripts/renderer.ts -------------------------------------------------------------------------------- /examples/object-oriented/solution/src/scripts/savings-account.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/TypeScriptDemos/HEAD/examples/object-oriented/solution/src/scripts/savings-account.ts -------------------------------------------------------------------------------- /examples/object-oriented/solution/src/styles/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/TypeScriptDemos/HEAD/examples/object-oriented/solution/src/styles/styles.css -------------------------------------------------------------------------------- /examples/object-oriented/solution/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/TypeScriptDemos/HEAD/examples/object-oriented/solution/tsconfig.json -------------------------------------------------------------------------------- /examples/object-oriented/solution/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/TypeScriptDemos/HEAD/examples/object-oriented/solution/webpack.config.js -------------------------------------------------------------------------------- /examples/optional-default-parameters/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/TypeScriptDemos/HEAD/examples/optional-default-parameters/index.html -------------------------------------------------------------------------------- /examples/optional-default-parameters/plnkr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/TypeScriptDemos/HEAD/examples/optional-default-parameters/plnkr.json -------------------------------------------------------------------------------- /examples/optional-default-parameters/scripts/optionalDefaultRestParameters.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/TypeScriptDemos/HEAD/examples/optional-default-parameters/scripts/optionalDefaultRestParameters.ts -------------------------------------------------------------------------------- /examples/optional-default-parameters/styles/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/TypeScriptDemos/HEAD/examples/optional-default-parameters/styles/app.css -------------------------------------------------------------------------------- /examples/optional-default-parameters/styles/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/TypeScriptDemos/HEAD/examples/optional-default-parameters/styles/bootstrap.min.css -------------------------------------------------------------------------------- /examples/parameter-types/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/TypeScriptDemos/HEAD/examples/parameter-types/index.html -------------------------------------------------------------------------------- /examples/parameter-types/plnkr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/TypeScriptDemos/HEAD/examples/parameter-types/plnkr.json -------------------------------------------------------------------------------- /examples/parameter-types/scripts/parameterTypes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/TypeScriptDemos/HEAD/examples/parameter-types/scripts/parameterTypes.ts -------------------------------------------------------------------------------- /examples/parameter-types/styles/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/TypeScriptDemos/HEAD/examples/parameter-types/styles/app.css -------------------------------------------------------------------------------- /examples/parameter-types/styles/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/TypeScriptDemos/HEAD/examples/parameter-types/styles/bootstrap.min.css -------------------------------------------------------------------------------- /examples/scratchpad/demo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/TypeScriptDemos/HEAD/examples/scratchpad/demo.js -------------------------------------------------------------------------------- /examples/scratchpad/demo.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/TypeScriptDemos/HEAD/examples/scratchpad/demo.js.map -------------------------------------------------------------------------------- /examples/scratchpad/demo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/TypeScriptDemos/HEAD/examples/scratchpad/demo.ts -------------------------------------------------------------------------------- /examples/unions-aliases-const-enums/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/TypeScriptDemos/HEAD/examples/unions-aliases-const-enums/index.html -------------------------------------------------------------------------------- /examples/unions-aliases-const-enums/plnkr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/TypeScriptDemos/HEAD/examples/unions-aliases-const-enums/plnkr.json -------------------------------------------------------------------------------- /examples/unions-aliases-const-enums/scripts/constEnums.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/TypeScriptDemos/HEAD/examples/unions-aliases-const-enums/scripts/constEnums.ts -------------------------------------------------------------------------------- /examples/unions-aliases-const-enums/scripts/typeAliases.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/TypeScriptDemos/HEAD/examples/unions-aliases-const-enums/scripts/typeAliases.ts -------------------------------------------------------------------------------- /examples/unions-aliases-const-enums/scripts/unionTypes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/TypeScriptDemos/HEAD/examples/unions-aliases-const-enums/scripts/unionTypes.ts -------------------------------------------------------------------------------- /examples/unions-aliases-const-enums/styles/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/TypeScriptDemos/HEAD/examples/unions-aliases-const-enums/styles/app.css -------------------------------------------------------------------------------- /examples/unions-aliases-const-enums/styles/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/TypeScriptDemos/HEAD/examples/unions-aliases-const-enums/styles/bootstrap.min.css -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/TypeScriptDemos/HEAD/index.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/TypeScriptDemos/HEAD/package.json -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/TypeScriptDemos/HEAD/readme.md -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/TypeScriptDemos/HEAD/tsconfig.json --------------------------------------------------------------------------------