UNPKG

@calf/serializable

Version:

Serializable module of Calf framework.

8 lines (7 loc) 191 B
import { IEntityDefinition } from "./entity-definition.interface"; export interface ISchema<T> { entity?: IEntityDefinition; properties?: { [name: string]: T; }; }