@recraft-ai/mcp-recraft-server
Version:
MCP Server implementation for recraft.ai API
16 lines (15 loc) • 799 B
TypeScript
import type { ImageStyle } from './ImageStyle';
import type { ImageSubStyle } from './ImageSubStyle';
export interface CreateStyleResponse {
creationTime: string;
id: string;
isPrivate: boolean;
style: ImageStyle;
substyle?: ImageSubStyle;
credits: number;
}
export declare function instanceOfCreateStyleResponse(value: object): value is CreateStyleResponse;
export declare function CreateStyleResponseFromJSON(json: any): CreateStyleResponse;
export declare function CreateStyleResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): CreateStyleResponse;
export declare function CreateStyleResponseToJSON(json: any): CreateStyleResponse;
export declare function CreateStyleResponseToJSONTyped(value?: CreateStyleResponse | null, ignoreDiscriminator?: boolean): any;