@zeplin/sdk
Version:
Zeplin API client for JavaScript
50 lines (49 loc) • 1.1 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.
*/
export declare const transformFlowBoardToJSON: (value: FlowBoard) => any;
export declare const transformJSONToFlowBoard: (value: any) => FlowBoard;
/**
*
* @export
* @interface FlowBoard
*/
export interface FlowBoard {
/**
* Identifier of the board
* @type {string}
* @memberof FlowBoard
*/
id: string;
/**
* Name of the board
* @type {string}
* @memberof FlowBoard
*/
name: string;
/**
* Number of connectors in the board
* @type {number}
* @memberof FlowBoard
*/
numberOfConnectors: number;
/**
* Number of nodes in the board
* @type {number}
* @memberof FlowBoard
*/
numberOfNodes: number;
/**
* Number of groups in the board
* @type {number}
* @memberof FlowBoard
*/
numberOfGroups: number;
}