/** * It is the data model of how data instances are stored and associated to the model */ import { IObject } from '../ui/common/listmanagement/listPopoverItem'; import { JSONContextType } from '../utils/repo/io'; export interface SMARTDocument extends IObject { name: string; attributes: Record; } export interface SMARTDocumentStore extends IObject { docs: Record; } export interface SMARTModelStore extends IObject { store: Record; } export interface SMARTWorkspace { '@context': JSONContextType; '@type': 'MMEL_WORKSPACE'; docs: Record; version: string; } export declare function createNewSMARTWorkspace(): SMARTWorkspace; //# sourceMappingURL=workspace.d.ts.map