this.gui
    Preparing search index...

    Interface NamespaceProvider

    interface NamespaceProvider {
        getSurface(
            namespace: string,
            route: string,
        ): Promise<GuiSpecNode | null>;
        resolve(path: string): Promise<any>;
        subscribe(path: string, callback: (data: any) => void): UnsubscribeFn;
    }
    Index

    Methods