UNPKG

@zeplin/sdk

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