@lelemondev/sdk - v0.9.9
    Preparing search index...

    Interface HonoContext

    Minimal Hono context type (avoids requiring hono as dependency)

    interface HonoContext {
        executionCtx?: ExecutionContext;
        req: { raw: Request; [key: string]: unknown };
        res: Response | undefined;
        [key: string]: unknown;
    }

    Indexable

    • [key: string]: unknown
    Index

    Properties

    Properties

    executionCtx?: ExecutionContext
    req: { raw: Request; [key: string]: unknown }
    res: Response | undefined