@zeplin/sdk
Version:
Zeplin API client for JavaScript
38 lines (37 loc) • 855 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.
*/
export declare const transformVariableModeToJSON: (value: VariableMode) => any;
export declare const transformJSONToVariableMode: (value: any) => VariableMode;
/**
*
* @export
* @interface VariableMode
*/
export interface VariableMode {
/**
* Identifier of the mode
* @type {string}
* @memberof VariableMode
*/
id: string;
/**
* Name of the mode
* @type {string}
* @memberof VariableMode
*/
name: string;
/**
* Mode\'s identifier in the design tool
* @type {string}
* @memberof VariableMode
*/
modeId: string;
}