UNPKG

@unkey/api

Version:

Developer-friendly & type-safe Typescript SDK specifically catered to leverage *@unkey/api* API.

11 lines 590 B
import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; /** * Empty response object by design. A successful response indicates this operation was successfully executed. */ export type EmptyResponse = {}; /** @internal */ export declare const EmptyResponse$inboundSchema: z.ZodType<EmptyResponse, z.ZodTypeDef, unknown>; export declare function emptyResponseFromJSON(jsonString: string): SafeParseResult<EmptyResponse, SDKValidationError>; //# sourceMappingURL=emptyresponse.d.ts.map