/** * 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. */ /** * * @export * @interface LinkResultAllOfValue */ export interface LinkResultAllOfValue { /** * * @type {string} * @memberof LinkResultAllOfValue */ element1?: string; /** * * @type {string} * @memberof LinkResultAllOfValue */ element2?: string; } /** * Check if a given object implements the LinkResultAllOfValue interface. */ export declare function instanceOfLinkResultAllOfValue(value: object): value is LinkResultAllOfValue; export declare function LinkResultAllOfValueFromJSON(json: any): LinkResultAllOfValue; export declare function LinkResultAllOfValueFromJSONTyped(json: any, ignoreDiscriminator: boolean): LinkResultAllOfValue; export declare function LinkResultAllOfValueToJSON(value?: LinkResultAllOfValue | null): any;