Rezi
    Preparing search index...

    Type Alias CommandSource

    CommandSource: Readonly<
        {
            getItems: (
                query: string,
            ) => readonly CommandItem[] | Promise<readonly CommandItem[]>;
            id: string;
            name: string;
            prefix?: string;
            priority?: number;
        },
    >

    Source of commands for CommandPalette.