@zeplin/sdk
Version:
Zeplin API client for JavaScript
38 lines (37 loc) • 1.14 kB
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 transformThumbnailsToJSON: (value: Thumbnails) => any;
export declare const transformJSONToThumbnails: (value: any) => Thumbnails;
/**
* Thumbnail image URLs in various sizes. The aspect ratio of the original image is preserved. If the width of original image is lower than the desired width then the original width is used.
* @export
* @interface Thumbnails
*/
export interface Thumbnails {
/**
* URL of the thumbnail image with a width of at most 256 pixels
* @type {string}
* @memberof Thumbnails
*/
small: string;
/**
* URL of the thumbnail image with a width of at most 512 pixels
* @type {string}
* @memberof Thumbnails
*/
medium: string;
/**
* URL of the thumbnail image with a width of at most 1024 pixels
* @type {string}
* @memberof Thumbnails
*/
large: string;
}