UNPKG

@iyulab/oops

Version:

Core SDK for Oops - Safe text file editing with automatic backup

17 lines 487 B
/** * Workspace management for Oops */ import { WorkspaceInfo } from './types'; export declare class WorkspaceManager { private workspacePath; constructor(workspacePath?: string); private resolveWorkspacePath; getWorkspacePath(): string; init(): Promise<void>; exists(): Promise<boolean>; isHealthy(): Promise<boolean>; getInfo(): Promise<WorkspaceInfo>; clean(): Promise<void>; repair(): Promise<void>; } //# sourceMappingURL=workspace.d.ts.map