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 transformVersionCommitColorToJSON: (value: VersionCommitColor) => any; export declare const transformJSONToVersionCommitColor: (value: any) => VersionCommitColor; /** * * @export * @interface VersionCommitColor */ export interface VersionCommitColor { /** * red component of the color * @type {number} * @memberof VersionCommitColor */ r: number; /** * green component of the color * @type {number} * @memberof VersionCommitColor */ g: number; /** * blue component of the color * @type {number} * @memberof VersionCommitColor */ b: number; /** * alpha component of the color * @type {number} * @memberof VersionCommitColor */ a: number; }