8 lines
176 B
TypeScript
8 lines
176 B
TypeScript
export abstract class Annotation<Attribute = {}> {
|
|
public readonly attribute: Attribute;
|
|
|
|
public constructor(attribute?: Attribute) {
|
|
this.attribute = attribute;
|
|
}
|
|
}
|