@zeplin/sdk
Version:
Zeplin API client for JavaScript
38 lines (37 loc) • 1.16 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 transformComponentSectionVariantPropertyToJSON: (value: ComponentSectionVariantProperty) => any;
export declare const transformJSONToComponentSectionVariantProperty: (value: any) => ComponentSectionVariantProperty;
/**
*
* @export
* @interface ComponentSectionVariantProperty
*/
export interface ComponentSectionVariantProperty {
/**
* Unique id of the variant property
* @type {string}
* @memberof ComponentSectionVariantProperty
*/
id: string;
/**
* Name of the variant property (e.g. `“type”`, `“state”`, etc.)
* @type {string}
* @memberof ComponentSectionVariantProperty
*/
name: string;
/**
* Possible values that the property can take (e.g. `[\"default\", \"hover\", \"pressed\"]`)
* @type {Array<string>}
* @memberof ComponentSectionVariantProperty
*/
values: Array<string>;
}