@quo0/stiletto
Version:
With stiletto library you will be able to mock requests and choose between preconfigured responses right on the fly via UI
12 lines (11 loc) • 495 B
TypeScript
import { IAbstractFolderStructureEntity, FolderStructureEntityProps } from '../../../ioc';
export declare class FolderStructureEntityModel implements IAbstractFolderStructureEntity {
readonly privateName: string;
readonly name: string;
readonly defaultPath: string;
constructor({ privateName, name, defaultPath }: FolderStructureEntityProps);
create(): Promise<void>;
read(): Promise<Array<string>>;
update(): Promise<void>;
delete(): Promise<void>;
}