/// <reference types="@cloudflare/workers-types" />
/**
 * Environment bindings required by @zync/api-usage helpers.
 * Both the write binding (AE dataset) and read credentials (HTTP API).
 */
export interface ApiUsageEnv {
  /** Cloudflare Analytics Engine write binding */
  API_USAGE: AnalyticsEngineDataset
  /** Account Analytics: Read token — used for the AE SQL HTTP API */
  CF_ANALYTICS_READ_TOKEN: string
  /** Cloudflare account ID — used for the AE SQL HTTP endpoint URL */
  CF_ACCOUNT_ID: string
}
