botas-core
    Preparing search index...

    Interface StateScope

    A key-value store for a single state scope (conversation, user, or temp).

    interface StateScope {
        get<T = unknown>(key: string): T | undefined;
        set<T>(key: string, value: T): void;
        has(key: string): boolean;
        delete(key: string): void;
        clear(): void;
    }

    Implemented by

    Index

    Methods