@zeplin/sdk
Version:
Zeplin API client for JavaScript
44 lines (43 loc) • 987 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 transformHotspotBoundingRectangleToJSON: (value: HotspotBoundingRectangle) => any;
export declare const transformJSONToHotspotBoundingRectangle: (value: any) => HotspotBoundingRectangle;
/**
*
* @export
* @interface HotspotBoundingRectangle
*/
export interface HotspotBoundingRectangle {
/**
*
* @type {number}
* @memberof HotspotBoundingRectangle
*/
width: number;
/**
*
* @type {number}
* @memberof HotspotBoundingRectangle
*/
height: number;
/**
*
* @type {number}
* @memberof HotspotBoundingRectangle
*/
x: number;
/**
*
* @type {number}
* @memberof HotspotBoundingRectangle
*/
y: number;
}