modelling/lib/interfaces/Serializable.ts
2020-05-04 20:27:52 +02:00

4 lines
57 B
TypeScript

export interface Serializable {
serialize(): string;
}