UNPKG

@zeplin/sdk

Version:
32 lines (31 loc) 812 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 transformSpacingTokenUpdateBodyToJSON: (value: SpacingTokenUpdateBody) => any; export declare const transformJSONToSpacingTokenUpdateBody: (value: any) => SpacingTokenUpdateBody; /** * * @export * @interface SpacingTokenUpdateBody */ export interface SpacingTokenUpdateBody { /** * The name of the token * @type {string} * @memberof SpacingTokenUpdateBody */ name?: string; /** * The value of the token * @type {number} * @memberof SpacingTokenUpdateBody */ value?: number; }