UNPKG

@zeplin/sdk

Version:
51 lines (50 loc) 1.14 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. */ import { Variable } from './variable'; export declare const transformVariableGroupToJSON: (value: VariableGroup) => any; export declare const transformJSONToVariableGroup: (value: any) => VariableGroup; /** * * @export * @interface VariableGroup */ export interface VariableGroup { /** * Identifier of the color * @type {string} * @memberof VariableGroup */ id: string; /** * Name of the color * @type {string} * @memberof VariableGroup */ name: string; /** * Description of the color * @type {string} * @memberof VariableGroup */ description?: string; /** * Parent group of the group * @type {string} * @memberof VariableGroup */ parent?: string; /** * * @type {Array<Variable>} * @memberof VariableGroup */ variables: Array<Variable>; }