cloudflare
Version:
The official TypeScript library for the Cloudflare API
16 lines • 561 B
TypeScript
import { APIResource } from "../../resource.js";
import * as Core from "../../core.js";
export declare class URLs extends APIResource {
/**
* Get Gateway URL
*/
get(gatewayId: string, provider: string, params: URLGetParams, options?: Core.RequestOptions): Core.APIPromise<URLGetResponse>;
}
export type URLGetResponse = string;
export interface URLGetParams {
account_id: string;
}
export declare namespace URLs {
export { type URLGetResponse as URLGetResponse, type URLGetParams as URLGetParams };
}
//# sourceMappingURL=urls.d.ts.map