UNPKG

cloudflare

Version:

The official TypeScript library for the Cloudflare API

18 lines 620 B
import { APIResource } from "../../../resource.js"; import * as Core from "../../../core.js"; export declare class Limits extends APIResource { /** * Fetch limits associated with DLP for account */ list(params: LimitListParams, options?: Core.RequestOptions): Core.APIPromise<LimitListResponse>; } export interface LimitListResponse { max_dataset_cells: number; } export interface LimitListParams { account_id: string; } export declare namespace Limits { export { type LimitListResponse as LimitListResponse, type LimitListParams as LimitListParams }; } //# sourceMappingURL=limits.d.ts.map