UNPKG

@recraft-ai/mcp-recraft-server

Version:
11 lines (10 loc) 583 B
export declare const ImageFormat: { readonly Webp: "webp"; readonly Png: "png"; }; export type ImageFormat = typeof ImageFormat[keyof typeof ImageFormat]; export declare function instanceOfImageFormat(value: any): boolean; export declare function ImageFormatFromJSON(json: any): ImageFormat; export declare function ImageFormatFromJSONTyped(json: any, ignoreDiscriminator: boolean): ImageFormat; export declare function ImageFormatToJSON(value?: ImageFormat | null): any; export declare function ImageFormatToJSONTyped(value: any, ignoreDiscriminator: boolean): ImageFormat;