UNPKG

@zeplin/sdk

Version:
32 lines (31 loc) 786 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 transformScreenUpdateBodyToJSON: (value: ScreenUpdateBody) => any; export declare const transformJSONToScreenUpdateBody: (value: any) => ScreenUpdateBody; /** * * @export * @interface ScreenUpdateBody */ export interface ScreenUpdateBody { /** * New description for screen * @type {string} * @memberof ScreenUpdateBody */ description?: string; /** * New tags for the screen * @type {Set<string>} * @memberof ScreenUpdateBody */ tags?: Set<string>; }