/** * 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 BaseResult */ export interface BaseResult { /** * * @type {Date} * @memberof BaseResult */ scheduleDate: Date | null; /** * * @type {Date} * @memberof BaseResult */ readonly createdAt: Date; } /** * Check if a given object implements the BaseResult interface. */ export declare function instanceOfBaseResult(value: object): value is BaseResult; export declare function BaseResultFromJSON(json: any): BaseResult; export declare function BaseResultFromJSONTyped(json: any, ignoreDiscriminator: boolean): BaseResult; export declare function BaseResultToJSON(value?: Omit | null): any;