/** * 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 { BaseResult } from './BaseResult'; import type { LinkResultAllOfValue } from './LinkResultAllOfValue'; /** * * @export * @interface LinkResult */ export interface LinkResult extends BaseResult { /** * * @type {Array} * @memberof LinkResult */ value?: Array | null; } /** * Check if a given object implements the LinkResult interface. */ export declare function instanceOfLinkResult(value: object): value is LinkResult; export declare function LinkResultFromJSON(json: any): LinkResult; export declare function LinkResultFromJSONTyped(json: any, ignoreDiscriminator: boolean): LinkResult; export declare function LinkResultToJSON(value?: Omit | null): any;