UNPKG

@zeplin/sdk

Version:
39 lines (38 loc) 1.08 kB
/** * 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 { ScreenAnnotationPosition } from './screen-annotation-position'; export declare const transformScreenAnnotationUpdateBodyToJSON: (value: ScreenAnnotationUpdateBody) => any; export declare const transformJSONToScreenAnnotationUpdateBody: (value: any) => ScreenAnnotationUpdateBody; /** * * @export * @interface ScreenAnnotationUpdateBody */ export interface ScreenAnnotationUpdateBody { /** * Content of the annotation * @type {string} * @memberof ScreenAnnotationUpdateBody */ content?: string; /** * * @type {ScreenAnnotationPosition} * @memberof ScreenAnnotationUpdateBody */ position?: ScreenAnnotationPosition; /** * The unique id of the annotation type * @type {string} * @memberof ScreenAnnotationUpdateBody */ type?: string; }