interface Options {
    controllerId?: string;
    initialProjects: () => Promise<PythonProject[]>;
    onWorkspaceLoaded(event: PythonEditorWorkspaceRequest): void;
    onWorkspaceSave(event: PythonEditorWorkspaceRequest): void;
    onWorkspaceSync(event: PythonEditorWorkspaceRequest): void;
}

Properties

controllerId?: string

Set this to a value representing your app.

initialProjects: () => Promise<PythonProject[]>

A function that provides the initial set of projects to be used.

This will also be used if the iframe reloads itself.

Methods