7 lines
136 B
TypeScript
7 lines
136 B
TypeScript
export abstract class Typed {
|
|
public abstract get type(): string;
|
|
|
|
public toJSON() {
|
|
return { type: this.type, ...this };
|
|
}
|
|
}
|