@zeplin/sdk
Version:
Zeplin API client for JavaScript
38 lines (37 loc) • 1.05 kB
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 transformComponentVariantPropertyToJSON: (value: ComponentVariantProperty) => any;
export declare const transformJSONToComponentVariantProperty: (value: any) => ComponentVariantProperty;
/**
*
* @export
* @interface ComponentVariantProperty
*/
export interface ComponentVariantProperty {
/**
* Unique id of the variant property
* @type {string}
* @memberof ComponentVariantProperty
*/
id: string;
/**
* Name of the variant property (e.g. `“type”`, `“state”`, etc.)
* @type {string}
* @memberof ComponentVariantProperty
*/
name: string;
/**
* Value for this property of the component (e.g. `\"primary\"`)
* @type {string}
* @memberof ComponentVariantProperty
*/
value: string;
}