@zeplin/sdk
Version:
Zeplin API client for JavaScript
32 lines (31 loc) • 831 B
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 transformScreenVariantGroupValueToJSON: (value: ScreenVariantGroupValue) => any;
export declare const transformJSONToScreenVariantGroupValue: (value: any) => ScreenVariantGroupValue;
/**
*
* @export
* @interface ScreenVariantGroupValue
*/
export interface ScreenVariantGroupValue {
/**
* Unique id of the variant screen
* @type {string}
* @memberof ScreenVariantGroupValue
*/
screenId: string;
/**
* Value for the variant
* @type {string}
* @memberof ScreenVariantGroupValue
*/
value: string;
}