UNPKG

@zeplin/sdk

Version:
38 lines (37 loc) 900 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. */ export declare const transformAssetContentToJSON: (value: AssetContent) => any; export declare const transformJSONToAssetContent: (value: any) => AssetContent; /** * * @export * @interface AssetContent */ export interface AssetContent { /** * URL of the asset content * @type {string} * @memberof AssetContent */ url: string; /** * Format of the asset content * @type {string} * @memberof AssetContent */ format: 'png' | 'jpg' | 'svg' | 'pdf'; /** * Density of the asset content * @type {number} * @memberof AssetContent */ density?: 1 | 1.5 | 2 | 3 | 4; }