UNPKG

@zeplin/sdk

Version:
38 lines (37 loc) 990 B
/** * 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. */ export declare const transformFlowBoardConnectorLabelToJSON: (value: FlowBoardConnectorLabel) => any; export declare const transformJSONToFlowBoardConnectorLabel: (value: any) => FlowBoardConnectorLabel; /** * * @export * @interface FlowBoardConnectorLabel */ export interface FlowBoardConnectorLabel { /** * Text for the connector label * @type {string} * @memberof FlowBoardConnectorLabel */ text: string; /** * Percentage based position of the connector label * @type {number} * @memberof FlowBoardConnectorLabel */ position?: number; /** * Width of the connector label * @type {number} * @memberof FlowBoardConnectorLabel */ width?: number; }