@zeplin/sdk
Version:
Zeplin API client for JavaScript
33 lines (32 loc) • 1.12 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.
*/
import { ComponentSectionVariantProperty } from './component-section-variant-property';
export declare const transformComponentSectionVariantToJSON: (value: ComponentSectionVariant) => any;
export declare const transformJSONToComponentSectionVariant: (value: any) => ComponentSectionVariant;
/**
* Variant information for this component section
* @export
* @interface ComponentSectionVariant
*/
export interface ComponentSectionVariant {
/**
* List of variant properties that the components of this section take
* @type {Array<ComponentSectionVariantProperty>}
* @memberof ComponentSectionVariant
*/
properties: Array<ComponentSectionVariantProperty>;
/**
* Unique identifier used for this variant in the source design file
* @type {string}
* @memberof ComponentSectionVariant
*/
sourceId?: string;
}