Logos DX
    Preparing search index...

    Type Alias StorageAdapter

    type StorageAdapter = {
        load: (key: string) => Promise<{ context: any; state: string } | null>;
        save: (
            key: string,
            snapshot: { context: any; state: string },
        ) => Promise<void>;
    }
    Index

    Properties

    Properties

    load: (key: string) => Promise<{ context: any; state: string } | null>
    save: (key: string, snapshot: { context: any; state: string }) => Promise<void>