Used for questions that relate to features or technical changes introduced in TypeScript 1.6
I have several utility functions. What is the best way to package these up, and then import them? This is …
typescript typescript1.6Is it possible to use NodeJS' events.EventEmitter with a TypeScript class? If yes, how? I've tried countless variations in …
javascript node.js typescript typescript1.6I've just started with TypeScript and I'm trying to understand why the following inline object definition isn't considered valid. I …
javascript interface typescript typescript1.6While designing a definition file, I came across this error (TS2507). How can I specify a type to be a …
typescript typescript1.6I just took an example from here https://angular.io/guide/quickstart I've done all according to the quickstart manual. …
webstorm angular typescript1.6I have the following app.tsx file working fine loading an App element from a React.Component and a child …
reactjs typescript react-jsx typescript1.6For some Typescript methods I build, often I need the asynchronicity of a promise but I do not require the …
typescript promise es6-promise typescript1.5 typescript1.6With TypeScript 1.6 and native es6 Promises I'm getting an error whenever I use Promise.all([]) with two different return types. …
typescript promise es6-promise typescript1.6I'm using gulpfile.js to compile my tsconfig.json project this way: var ts = require('gulp-typescript'); var tsProject = ts.createProject(…
typescript gulp asp.net-core typescript1.6I want to write es6 class: class SomeClass { static prop = 123 method() { } } How to get access to static prop from method() …
typescript this static-methods static-members typescript1.6