drupflare/worker - v1.0.0
    Preparing search index...

    Type Alias SecretStore

    a secret store; the Durable Object satisfies this with metaGet/metaSet

    type SecretStore = {
        get(key: string): string | null;
        set(key: string, value: string): void;
    }
    Index