UNPKG

@recraft-ai/mcp-recraft-server

Version:
10 lines (9 loc) 552 B
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;