persistible-interface.ts 61 B

123
  1. export interface IPersistible<T> {
  2. save(T: any): void;
  3. }