@recraft-ai/mcp-recraft-server
Version:
MCP Server implementation for recraft.ai API
10 lines (9 loc) • 552 B
TypeScript
export interface TextLayoutItem {
bbox: Array<Array<number>>;
text: string;
}
export declare function instanceOfTextLayoutItem(value: object): value is TextLayoutItem;
export declare function TextLayoutItemFromJSON(json: any): TextLayoutItem;
export declare function TextLayoutItemFromJSONTyped(json: any, ignoreDiscriminator: boolean): TextLayoutItem;
export declare function TextLayoutItemToJSON(json: any): TextLayoutItem;
export declare function TextLayoutItemToJSONTyped(value?: TextLayoutItem | null, ignoreDiscriminator?: boolean): any;