UNPKG

@zeplin/sdk

Version:
34 lines (33 loc) 808 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 { HotspotBoundingRectangle } from './hotspot-bounding-rectangle'; import { LinkDestination } from './link-destination'; export declare const transformLinkToJSON: (value: Link) => any; export declare const transformJSONToLink: (value: any) => Link; /** * * @export * @interface Link */ export interface Link { /** * * @type {HotspotBoundingRectangle} * @memberof Link */ rect: HotspotBoundingRectangle; /** * * @type {LinkDestination} * @memberof Link */ destination: LinkDestination; }