@recraft-ai/mcp-recraft-server
Version:
MCP Server implementation for recraft.ai API
24 lines (23 loc) • 1.07 kB
TypeScript
export declare const ImageSize: {
readonly _1024x1024: "1024x1024";
readonly _1365x1024: "1365x1024";
readonly _1024x1365: "1024x1365";
readonly _1536x1024: "1536x1024";
readonly _1024x1536: "1024x1536";
readonly _1820x1024: "1820x1024";
readonly _1024x1820: "1024x1820";
readonly _1024x2048: "1024x2048";
readonly _2048x1024: "2048x1024";
readonly _1434x1024: "1434x1024";
readonly _1024x1434: "1024x1434";
readonly _1024x1280: "1024x1280";
readonly _1280x1024: "1280x1024";
readonly _1024x1707: "1024x1707";
readonly _1707x1024: "1707x1024";
};
export type ImageSize = typeof ImageSize[keyof typeof ImageSize];
export declare function instanceOfImageSize(value: any): boolean;
export declare function ImageSizeFromJSON(json: any): ImageSize;
export declare function ImageSizeFromJSONTyped(json: any, ignoreDiscriminator: boolean): ImageSize;
export declare function ImageSizeToJSON(value?: ImageSize | null): any;
export declare function ImageSizeToJSONTyped(value: any, ignoreDiscriminator: boolean): ImageSize;