UNPKG

@lava.ts/project

Version:

Library to manage Wanadev's projects, by replacing obsidian-project

13 lines (7 loc) 288 B
import type Structure from "./Structure"; export interface IProjectManager { structures: Record<string, Structure>; getLayer(layerName: string): Structure[]; addStructure(structure: Structure, layerName?: string): void; removeStructure(structure: Structure): void; }