UNPKG

@zeplin/sdk

Version:
39 lines (38 loc) 1.02 kB
/** * 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 { ScreenVariantGroupValue } from './screen-variant-group-value'; export declare const transformScreenVariantGroupToJSON: (value: ScreenVariantGroup) => any; export declare const transformJSONToScreenVariantGroup: (value: any) => ScreenVariantGroup; /** * * @export * @interface ScreenVariantGroup */ export interface ScreenVariantGroup { /** * The unique id of the screen variant * @type {string} * @memberof ScreenVariantGroup */ id: string; /** * The name of the screen variant * @type {string} * @memberof ScreenVariantGroup */ name: string; /** * * @type {Array<ScreenVariantGroupValue>} * @memberof ScreenVariantGroup */ variants: Array<ScreenVariantGroupValue>; }