UNPKG

@zeplin/sdk

Version:
33 lines (32 loc) 853 B
/** * 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 { ScreenVariantGroupReference } from './screen-variant-group-reference'; export declare const transformScreenVariantToJSON: (value: ScreenVariant) => any; export declare const transformJSONToScreenVariant: (value: any) => ScreenVariant; /** * * @export * @interface ScreenVariant */ export interface ScreenVariant { /** * Value for this variant of the screen * @type {string} * @memberof ScreenVariant */ value: string; /** * * @type {ScreenVariantGroupReference} * @memberof ScreenVariant */ group: ScreenVariantGroupReference; }