UNPKG

@zeplin/sdk

Version:
46 lines (45 loc) 1.21 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 { EntityReference } from './entity-reference'; import { FlowBoardConnectionPosition } from './flow-board-connection-position'; export declare const transformFlowBoardConnectionToJSON: (value: FlowBoardConnection) => any; export declare const transformJSONToFlowBoardConnection: (value: any) => FlowBoardConnection; /** * * @export * @interface FlowBoardConnection */ export interface FlowBoardConnection { /** * * @type {EntityReference} * @memberof FlowBoardConnection */ node: EntityReference; /** * * @type {string} * @memberof FlowBoardConnection */ style?: 'arrow' | 'point'; /** * Layer\'s identifier in the design tool * @type {string} * @memberof FlowBoardConnection */ layerSourceId?: string; /** * * @type {FlowBoardConnectionPosition} * @memberof FlowBoardConnection */ connectionPosition?: FlowBoardConnectionPosition; }