Stratal API Reference
    Preparing search index...

    Interface StratalEnv

    Cloudflare Worker Environment Bindings

    This interface defines the base environment bindings required by Stratal. Use TypeScript module augmentation to add your own application-specific bindings.

    declare module 'stratal' {
    interface StratalEnv {
    DATABASE: D1Database
    NOTIFICATIONS_QUEUE: Queue
    }
    }
    interface StratalEnv {
        APP_SECRET?: string;
        CACHE: KVNamespace;
        ENVIRONMENT: string;
    }
    Index

    Properties

    APP_SECRET?: string
    CACHE: KVNamespace
    ENVIRONMENT: string