UNPKG

@wonderlandengine/editor-api

Version:

Wonderland Engine's Editor API for plugins - very experimental.

11 lines (10 loc) 251 B
/** @todo: Give access to each projects using: getProject(filename). */ /** * Workspace access. * * Allows to read the current workspace setup. */ export interface Workspace { mainFilename: string; } export declare const workspace: Workspace;