##// END OF EJS Templates
corrected code to support ts strict mode...
corrected code to support ts strict mode safe.ts - more tight typings - added notImplemented stub function - added fork funtion - added keys function (like Object.keys but extracts keys type) - added isKeyof typeguard - added 'primitive' union type added EventProvider for the observable

File last commit:

r114:475b8ce3e850 ioc ts support
r115:691199f665e0 ioc ts support
Show More
ConfigError.ts
12 lines | 211 B | video/mp2t | TypeScriptLexer
export class ConfigError extends Error {
inner?: {};
path?: string;
configName?: string;
constructor(message: string, inner?: {}) {
super(message);
this.inner = inner;
}
}