UNPKG

@zeplin/sdk

Version:
32 lines (31 loc) 866 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 transformScreenAnnotationPositionToJSON: (value: ScreenAnnotationPosition) => any; export declare const transformJSONToScreenAnnotationPosition: (value: any) => ScreenAnnotationPosition; /** * Position of the annotation with respect to top left corner. Values are normalized in [0, 1] * @export * @interface ScreenAnnotationPosition */ export interface ScreenAnnotationPosition { /** * * @type {number} * @memberof ScreenAnnotationPosition */ x: number; /** * * @type {number} * @memberof ScreenAnnotationPosition */ y: number; }