* 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)
| 6727 | * @returns A promise that resolves with the outcome of the rate limit. |
| 6728 | */ |
| 6729 | limit(options: RateLimitOptions): Promise<RateLimitOutcome>; |
| 6730 | } |
| 6731 | // Namespace for RPC utility types. Unfortunately, we can't use a `module` here as these types need |
| 6732 | // to referenced by `Fetcher`. This is included in the "importable" version of the types which |
nothing calls this directly
no outgoing calls
no test coverage detected