worker-configuration.d.ts•558 B
/* eslint-disable */
import { DurableObjectNamespace, KVNamespace } from '@cloudflare/workers-types'
interface Env {
OAUTH_KV: KVNamespace
CLERK_SECRET_KEY: string
CLERK_PUBLISHABLE_KEY: string
APP_URL: string
// @ts-expect-error
MCP_OBJECT: DurableObjectNamespace<import('./src/index').ClerkAppMCP>
}
declare namespace Cloudflare {
interface Env {
OAUTH_KV: KVNamespace
CLERK_SECRET_KEY: string
CLERK_PUBLISHABLE_KEY: string
APP_URL: string
// @ts-expect-error
MCP_OBJECT: DurableObjectNamespace<import('./src/index').ClerkAppMCP>
}
}