@zeplin/sdk
Version:
Zeplin API client for JavaScript
51 lines (50 loc) • 1.14 kB
TypeScript
/**
* Zeplin API
* Access your resources in Zeplin
*
* Contact: support@zeplin.io
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
import { FlowBoardPosition } from './flow-board-position';
export declare const transformFlowBoardTextNodeToJSON: (value: FlowBoardTextNode) => any;
export declare const transformJSONToFlowBoardTextNode: (value: any) => FlowBoardTextNode;
/**
*
* @export
* @interface FlowBoardTextNode
*/
export interface FlowBoardTextNode {
/**
* The unique id of the text node
* @type {string}
* @memberof FlowBoardTextNode
*/
id: string;
/**
*
* @type {string}
* @memberof FlowBoardTextNode
*/
type: 'TextLabelNode';
/**
*
* @type {FlowBoardPosition}
* @memberof FlowBoardTextNode
*/
position: FlowBoardPosition;
/**
*
* @type {string}
* @memberof FlowBoardTextNode
*/
text: string;
/**
*
* @type {number}
* @memberof FlowBoardTextNode
*/
width: number;
}