modelling/lib/interfaces/Serializable.ts

4 lines
57 B
TypeScript
Raw Normal View History

2020-05-04 20:27:52 +02:00
export interface Serializable {
serialize(): string;
2020-05-04 20:04:38 +02:00
}