UNPKG

@skimp/json-file

Version:

The json-file module for the skimp domain modelling framework

9 lines (8 loc) 255 B
export interface IEntity { exists(): Promise<boolean>; readContent(): Promise<string>; createdDate(): Promise<Date>; listChildren(): Promise<Array<string>>; delete(): Promise<void>; write(content: string): Promise<void>; }