/** * EAS API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ import type { BaseDraw } from './BaseDraw'; import type { LinkResult } from './LinkResult'; /** * * @export * @interface Link */ export interface Link extends BaseDraw { /** * * @type {Array} * @memberof Link */ itemsSet1: Array; /** * * @type {Array} * @memberof Link */ itemsSet2: Array; /** * * @type {Array} * @memberof Link */ readonly results: Array; } /** * Check if a given object implements the Link interface. */ export declare function instanceOfLink(value: object): value is Link; export declare function LinkFromJSON(json: any): Link; export declare function LinkFromJSONTyped(json: any, ignoreDiscriminator: boolean): Link; export declare function LinkToJSON(value?: Omit | null): any;