argos/dmp-frontend/src/app/models/Serializable.ts

4 lines
71 B
TypeScript
Raw Normal View History

2017-12-14 11:41:26 +01:00
export interface Serializable<T> {
fromJSONObject(item: Object): T;
}