@zeplin/sdk
Version:
Zeplin API client for JavaScript
40 lines (39 loc) • 965 B
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.
*/
import { ColorData } from './color-data';
import { VariableValueTypeEnum } from './variable-value-type-enum';
export declare const transformVariableValueToJSON: (value: VariableValue) => any;
export declare const transformJSONToVariableValue: (value: any) => VariableValue;
/**
*
* @export
* @interface VariableValue
*/
export interface VariableValue {
/**
* Mode id of the variable value
* @type {string}
* @memberof VariableValue
*/
modeId: string;
/**
*
* @type {VariableValueTypeEnum}
* @memberof VariableValue
*/
type: VariableValueTypeEnum;
/**
*
* @type {ColorData}
* @memberof VariableValue
*/
color: ColorData;
}