Cloesce - v0.0.5-unstable.27
    Preparing search index...

    Variable WranglerEnvConst

    WranglerEnv: ClassDecorator = ...

    Declares a Wrangler environment definition.

    A @WranglerEnv decorated class describes environment bindings available to your Cloudflare Worker at runtime.

    The environment instance is automatically injected into decorated methods using @Inject.

    Example:

    WranglerEnv
    export class Env {
    db: D1Database;
    motd: string;
    }

    // in a method...
    foo(@Inject env: Env) {...}