@qite/tide-client
Version:
Frontend client for Tide
24 lines (23 loc) • 636 B
TypeScript
export declare const post: (
url: string,
apiKey: string,
body?: string | null | undefined,
token?: string | undefined,
signal?: AbortSignal | undefined,
languageCode?: string | undefined
) => Promise<Response>;
export declare const patch: (
url: string,
apiKey: string,
body?: string | null | undefined,
token?: string | undefined,
signal?: AbortSignal | undefined,
languageCode?: string | undefined
) => Promise<Response>;
export declare const get: (
url: string,
apiKey: string,
token?: string | undefined,
signal?: AbortSignal | undefined,
languageCode?: string | undefined
) => Promise<Response>;