The type of the decorated class associated with this context.
Readonly
kindThe kind of element that was decorated.
Readonly
nameThe name of the decorated class.
Adds a callback to be invoked after the class definition has been finalized.
function customElement(name: string): ClassDecoratorFunction {
return (target, context) => {
context.addInitializer(function () {
customElements.define(name, this);
});
}
}
@customElement ("my-element")
class MyElement {}
Context provided to a class decorator.