@zeplin/sdk
Version:
Zeplin API client for JavaScript
32 lines (31 loc) • 793 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 transformVariableInfoToJSON: (value: VariableInfo) => any;
export declare const transformJSONToVariableInfo: (value: any) => VariableInfo;
/**
*
* @export
* @interface VariableInfo
*/
export interface VariableInfo {
/**
* The source id of the variable
* @type {string}
* @memberof VariableInfo
*/
sourceId: string;
/**
* The source id of the collection that the variable belongs to
* @type {string}
* @memberof VariableInfo
*/
collectionSourceId: string;
}