cloudflare
Version:
The official TypeScript library for the Cloudflare API
26 lines • 787 B
TypeScript
import { APIResource } from "../../resource.js";
import * as Core from "../../core.js";
import { SinglePage } from "../../pagination.js";
export declare class IPLists extends APIResource {
/**
* Get IP Lists
*/
get(params: IPListGetParams, options?: Core.RequestOptions): Core.PagePromise<IPListsSinglePage, IPList>;
}
export declare class IPListsSinglePage extends SinglePage<IPList> {
}
export interface IPList {
id?: number;
description?: string;
name?: string;
}
export interface IPListGetParams {
/**
* Identifier
*/
account_id: string;
}
export declare namespace IPLists {
export { type IPList as IPList, IPListsSinglePage as IPListsSinglePage, type IPListGetParams as IPListGetParams, };
}
//# sourceMappingURL=ip-lists.d.ts.map