UNPKG

@zeplin/sdk

Version:
45 lines (44 loc) 1.08 kB
/** * 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 { Thumbnails } from './thumbnails'; export declare const transformSnapshotImageToJSON: (value: SnapshotImage) => any; export declare const transformJSONToSnapshotImage: (value: any) => SnapshotImage; /** * * @export * @interface SnapshotImage */ export interface SnapshotImage { /** * Width of the component image * @type {number} * @memberof SnapshotImage */ width: number; /** * Height of the component image * @type {number} * @memberof SnapshotImage */ height: number; /** * * @type {Thumbnails} * @memberof SnapshotImage */ thumbnails: Thumbnails; /** * URL of the original image for the component (from the latest version) * @type {string} * @memberof SnapshotImage */ originalUrl: string; }