├── .editorconfig ├── .gitattributes ├── .gitignore ├── Gruntfile.js ├── LICENSE ├── README.md ├── package.json ├── src ├── ex1-typing.ts ├── ex2-interfaces.ts ├── ex3-functiontypes.ts ├── ex4-arraytypes.ts ├── ex5-unionAndExtension.ts ├── ex6-generics.ts ├── ex7-classes.ts └── ex8-modules.ts ├── tests ├── intern-local.ts ├── intern.ts ├── support │ ├── Reporter.ts │ └── util.ts └── unit │ └── all.ts ├── tsconfig.json ├── tslint.json └── typings.json /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitePen/TypeScript-examples/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitePen/TypeScript-examples/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitePen/TypeScript-examples/HEAD/.gitignore -------------------------------------------------------------------------------- /Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitePen/TypeScript-examples/HEAD/Gruntfile.js -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitePen/TypeScript-examples/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitePen/TypeScript-examples/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitePen/TypeScript-examples/HEAD/package.json -------------------------------------------------------------------------------- /src/ex1-typing.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitePen/TypeScript-examples/HEAD/src/ex1-typing.ts -------------------------------------------------------------------------------- /src/ex2-interfaces.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitePen/TypeScript-examples/HEAD/src/ex2-interfaces.ts -------------------------------------------------------------------------------- /src/ex3-functiontypes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitePen/TypeScript-examples/HEAD/src/ex3-functiontypes.ts -------------------------------------------------------------------------------- /src/ex4-arraytypes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitePen/TypeScript-examples/HEAD/src/ex4-arraytypes.ts -------------------------------------------------------------------------------- /src/ex5-unionAndExtension.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitePen/TypeScript-examples/HEAD/src/ex5-unionAndExtension.ts -------------------------------------------------------------------------------- /src/ex6-generics.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitePen/TypeScript-examples/HEAD/src/ex6-generics.ts -------------------------------------------------------------------------------- /src/ex7-classes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitePen/TypeScript-examples/HEAD/src/ex7-classes.ts -------------------------------------------------------------------------------- /src/ex8-modules.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitePen/TypeScript-examples/HEAD/src/ex8-modules.ts -------------------------------------------------------------------------------- /tests/intern-local.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitePen/TypeScript-examples/HEAD/tests/intern-local.ts -------------------------------------------------------------------------------- /tests/intern.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitePen/TypeScript-examples/HEAD/tests/intern.ts -------------------------------------------------------------------------------- /tests/support/Reporter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitePen/TypeScript-examples/HEAD/tests/support/Reporter.ts -------------------------------------------------------------------------------- /tests/support/util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitePen/TypeScript-examples/HEAD/tests/support/util.ts -------------------------------------------------------------------------------- /tests/unit/all.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitePen/TypeScript-examples/HEAD/tests/unit/all.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitePen/TypeScript-examples/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitePen/TypeScript-examples/HEAD/tslint.json -------------------------------------------------------------------------------- /typings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SitePen/TypeScript-examples/HEAD/typings.json --------------------------------------------------------------------------------