@zeplin/sdk
Version:
Zeplin API client for JavaScript
50 lines (49 loc) • 1.16 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 transformWorkflowStatusColorToJSON: (value: WorkflowStatusColor) => any;
export declare const transformJSONToWorkflowStatusColor: (value: any) => WorkflowStatusColor;
/**
*
* @export
* @interface WorkflowStatusColor
*/
export interface WorkflowStatusColor {
/**
* The name of the color
* @type {string}
* @memberof WorkflowStatusColor
*/
name: string;
/**
* red component of the color
* @type {number}
* @memberof WorkflowStatusColor
*/
r: number;
/**
* green component of the color
* @type {number}
* @memberof WorkflowStatusColor
*/
g: number;
/**
* blue component of the color
* @type {number}
* @memberof WorkflowStatusColor
*/
b: number;
/**
* alpha component of the color
* @type {number}
* @memberof WorkflowStatusColor
*/
a: number;
}