UNPKG

@zeplin/sdk

Version:
34 lines (33 loc) 859 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. */ import { LayerTextStyleRange } from './layer-text-style-range'; import { TextStyleData } from './text-style-data'; export declare const transformLayerTextStyleToJSON: (value: LayerTextStyle) => any; export declare const transformJSONToLayerTextStyle: (value: any) => LayerTextStyle; /** * * @export * @interface LayerTextStyle */ export interface LayerTextStyle { /** * * @type {LayerTextStyleRange} * @memberof LayerTextStyle */ range?: LayerTextStyleRange; /** * * @type {TextStyleData} * @memberof LayerTextStyle */ style?: TextStyleData; }