UNPKG

@zeplin/sdk

Version:
50 lines (49 loc) 1.12 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 transformColorUpdateBodyToJSON: (value: ColorUpdateBody) => any; export declare const transformJSONToColorUpdateBody: (value: any) => ColorUpdateBody; /** * * @export * @interface ColorUpdateBody */ export interface ColorUpdateBody { /** * Name of the color * @type {string} * @memberof ColorUpdateBody */ name?: string; /** * Red component of the color * @type {number} * @memberof ColorUpdateBody */ r?: number; /** * Green component of the color * @type {number} * @memberof ColorUpdateBody */ g?: number; /** * Blue component of the color * @type {number} * @memberof ColorUpdateBody */ b?: number; /** * Alpha component of the color * @type {number} * @memberof ColorUpdateBody */ a?: number; }