UNPKG

@zeplin/sdk

Version:
44 lines (43 loc) 1.03 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. */ export declare const transformFlowBoardNodeColorToJSON: (value: FlowBoardNodeColor) => any; export declare const transformJSONToFlowBoardNodeColor: (value: any) => FlowBoardNodeColor; /** * * @export * @interface FlowBoardNodeColor */ export interface FlowBoardNodeColor { /** * Red component of the color * @type {number} * @memberof FlowBoardNodeColor */ r: number; /** * Green component of the color * @type {number} * @memberof FlowBoardNodeColor */ g: number; /** * Blue component of the color * @type {number} * @memberof FlowBoardNodeColor */ b: number; /** * Alpha component of the color * @type {number} * @memberof FlowBoardNodeColor */ a: number; }