* Rate limit a request based on the provided options. * @see https://developers.cloudflare.com/workers/runtime-apis/bindings/rate-limit/ * @returns A promise that resolves with the outcome of the rate limit.
(options: RateLimitOptions)
| 12299 | * @returns A promise that resolves with the outcome of the rate limit. |
| 12300 | */ |
| 12301 | limit(options: RateLimitOptions): Promise<RateLimitOutcome>; |
| 12302 | } |
| 12303 | // Namespace for RPC utility types. Unfortunately, we can't use a `module` here as these types need |
| 12304 | // to referenced by `Fetcher`. This is included in the "importable" version of the types which |