The interface for the workspace API manager.

interface IManager {
    serverSettings: ServerConnection.ISettings;
    fetch(id): Promise<IWorkspace>;
    list(): Promise<{
        ids: string[];
        values: IWorkspace[];
    }>;
    remove(id): Promise<void>;
    save(id, workspace): Promise<void>;
}

Hierarchy (view full)

Properties

Methods

Properties

serverSettings: ServerConnection.ISettings

The server settings used to make API requests.

Methods