lib-utils-ts
Version:
<img src="https://img.shields.io/npm/v/lib-utils-ts"/> <img src="https://img.shields.io/snyk/vulnerabilities/npm/lib-utils-ts"/> <img src="https://img.shields.io/npm/l/lib-utils-ts"/> <img src="https://img.shields.io/github/languages/top/devGnode/lib-util
16 lines (11 loc) • 388 B
text/typescript
import {Annotation} from "./Annotation";
import {AnnotationTarget, Invokable} from "./Interfaces";
import {Member} from "../Reflect/Interfaces";
export class Decorators extends Annotation implements Invokable{
private constructor() {
super(Decorators.class().getName());
}
invoke(annotationAccessor: AnnotationTarget<Member>): void {
}
}
Object.package(this);