UNPKG

@zeplin/sdk

Version:
33 lines (32 loc) 814 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 { ColorData } from './color-data'; export declare const transformTextStyleUpdateBodyToJSON: (value: TextStyleUpdateBody) => any; export declare const transformJSONToTextStyleUpdateBody: (value: any) => TextStyleUpdateBody; /** * * @export * @interface TextStyleUpdateBody */ export interface TextStyleUpdateBody { /** * Name of the text style * @type {string} * @memberof TextStyleUpdateBody */ name?: string; /** * * @type {ColorData} * @memberof TextStyleUpdateBody */ color?: ColorData; }