UNPKG

cloudflare

Version:

The official TypeScript library for the Cloudflare API

27 lines 879 B
import { APIResource } from "../../../resource.js"; import * as Core from "../../../core.js"; export declare class TargetIndustries extends APIResource { /** * Lists all target industries */ list(params: TargetIndustryListParams, options?: Core.RequestOptions): Core.APIPromise<TargetIndustryListResponse>; } export interface TargetIndustryListResponse { items: TargetIndustryListResponse.Items; type: string; } export declare namespace TargetIndustryListResponse { interface Items { type: string; } } export interface TargetIndustryListParams { /** * Account ID */ account_id: number; } export declare namespace TargetIndustries { export { type TargetIndustryListResponse as TargetIndustryListResponse, type TargetIndustryListParams as TargetIndustryListParams, }; } //# sourceMappingURL=target-industries.d.ts.map