@grandlinex/kernel
    Preparing search index...

    Interface IStore

    interface IStore {
        clear(): void;
        delete(key: string): boolean;
        get(key: string): undefined | string;
        getBulk(...list: [string, string?][]): string[];
        has(key: string): boolean;
        set(key: string, value: string): void;
        setBulk(...list: [string, string][]): void;
    }

    Implemented by

    Index

    Methods

    • Returns void

    • Parameters

      • key: string

      Returns boolean

    • Parameters

      • key: string

      Returns undefined | string

    • Parameters

      • ...list: [string, string?][]

      Returns string[]

    • Parameters

      • key: string

      Returns boolean

    • Parameters

      • key: string
      • value: string

      Returns void

    • Parameters

      • ...list: [string, string][]

      Returns void