Saxonberg Server API
    Preparing search index...

    Public shape provided by CommandGiverMixin.

    interface CommandGiver {
        executeCommand(
            commandText: string,
            opts?: ExecuteCommandOpts,
        ): Promise<void>;
        getAffordances(): Affordance[];
        getAvailableCommands(): CommandDefinition[];
        popCommandSource(source: RecencySource): void;
        pushCommandSource(
            source: RecencySource,
            bucket: RecencyBucket,
            defs: CommandDefinition[],
        ): void;
        resetCommandSources(reason: "self-moved"): void;
    }
    Index

    Methods