8 lines
601 B
TypeScript
8 lines
601 B
TypeScript
import type { WhmcsClient, Address } from "../../schema";
|
|
import { type WhmcsClient as WhmcsRawClient, type WhmcsClientResponse } from "./raw.types";
|
|
export declare const parseWhmcsClientResponse: (raw: unknown) => WhmcsClientResponse;
|
|
export declare function transformWhmcsClientResponse(response: unknown): WhmcsClient;
|
|
export declare function transformWhmcsClient(raw: WhmcsRawClient): WhmcsClient;
|
|
export declare const transformWhmcsClientAddress: (raw: unknown) => Address | undefined;
|
|
export declare const prepareWhmcsClientAddressUpdate: (address: Partial<Address>) => Record<string, unknown>;
|