decla-red/frontend/src/scripts/transport/serializable.ts
2020-07-29 22:34:02 +02:00

7 lines
136 B
TypeScript

export abstract class Typed {
public abstract get type(): string;
public toJSON() {
return { type: this.type, ...this };
}
}