UNPKG

@skimp/json-file

Version:

The json-file module for the skimp domain modelling framework

7 lines (6 loc) 241 B
import { ResourceLocation } from '@skimp/core'; import { IEntity } from './entity.interface'; export interface IEntityFactory { fromPath(path: string): Promise<IEntity>; parseResourceLocation(path: string): ResourceLocation; }