I know the TypeScript documentation is not entirely up to date as the type
and abstract
keywords are not mentioned. For example the following is now valid TypeScript:
interface A {
b: string;
}
// I can't see anywhere in documentation this is mentioned.
type C = A;
var d: C;
d.b = 'something';
Is there a better place to get up to date documentation apart from parsing the source code or reading all the latest changes on GitHub issues?