Microsoft/TypeScript
Vedi su GitHubUnknown interface "ClassMethodDecoratorFunction" in documentation for 5.0.4 lib.decorators.d.ts
Open
#54.099 aperta il 2 mag 2023
BugDomain: DecoratorsHelp Wanted
Metriche repository
- Star
- (48.455 star)
- Metriche merge PR
- (Merge medio 6g 17h) (9 PR mergiate in 30 g)
Descrizione
lib Update Request
Configuration Check
My compilation target is ES2021 and my lib is ["es2017", "dom"].
Missing / Incorrect Definition
The mentioned example:
const bound: ClassMethodDecoratorFunction = (value, context) {
if (context.private) throw new TypeError("Not supported on private methods.");
context.addInitializer(function () {
this[context.name] = this[context.name].bind(this);
});
}
Uses an Interface ClassMethodDecoratorFunction which isn't implemented - as far as I can tell this should be ClassMethodDecoratorContext instead