UNPKG

@skimp/json-file

Version:

The json-file module for the skimp domain modelling framework

8 lines (7 loc) 215 B
import { IData } from './data.interface'; import { IRelationship } from './relationship.interface'; export interface IJsonFile { data: IData; type: string; relationships?: Array<IRelationship>; }