@zeplin/sdk
Version:
Zeplin API client for JavaScript
32 lines (31 loc) • 771 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 transformLinkDestinationToJSON: (value: LinkDestination) => any;
export declare const transformJSONToLinkDestination: (value: any) => LinkDestination;
/**
*
* @export
* @interface LinkDestination
*/
export interface LinkDestination {
/**
*
* @type {string}
* @memberof LinkDestination
*/
name: string;
/**
* Type of the link (`component` or `previous`)
* @type {string}
* @memberof LinkDestination
*/
type: 'component' | 'previous';
}