@zeplin/sdk
Version:
Zeplin API client for JavaScript
44 lines (43 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 transformEnabledRemPreferencesToJSON: (value: EnabledRemPreferences) => any;
export declare const transformJSONToEnabledRemPreferences: (value: any) => EnabledRemPreferences;
/**
*
* @export
* @interface EnabledRemPreferences
*/
export interface EnabledRemPreferences {
/**
* The status of the preferences
* @type {string}
* @memberof EnabledRemPreferences
*/
status: 'enabled';
/**
* Font size of the root element
* @type {number}
* @memberof EnabledRemPreferences
*/
rootFontSize: number;
/**
* Whether rem unit is used for font sizes
* @type {boolean}
* @memberof EnabledRemPreferences
*/
useForFontSizes: boolean;
/**
* Whether rem unit is used for measurements
* @type {boolean}
* @memberof EnabledRemPreferences
*/
useForMeasurements: boolean;
}