UNPKG

@zeplin/sdk

Version:
58 lines (57 loc) 1.47 kB
/** * 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 { FlowBoardConnection } from './flow-board-connection'; import { FlowBoardConnectorLabel } from './flow-board-connector-label'; export declare const transformFlowBoardConnectorToJSON: (value: FlowBoardConnector) => any; export declare const transformJSONToFlowBoardConnector: (value: any) => FlowBoardConnector; /** * * @export * @interface FlowBoardConnector */ export interface FlowBoardConnector { /** * The unique id of the connector * @type {string} * @memberof FlowBoardConnector */ id: string; /** * * @type {string} * @memberof FlowBoardConnector */ type: 'SolidLine' | 'DashedLine'; /** * * @type {FlowBoardConnection} * @memberof FlowBoardConnector */ start: FlowBoardConnection; /** * * @type {FlowBoardConnection} * @memberof FlowBoardConnector */ end: FlowBoardConnection; /** * * @type {FlowBoardConnectorLabel} * @memberof FlowBoardConnector */ label?: FlowBoardConnectorLabel; /** * Color for the connector * @type {string} * @memberof FlowBoardConnector */ color?: 'yellow' | 'orange' | 'peach' | 'green' | 'turquoise'; }