/** * 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 { ParticipantField } from './ParticipantField'; import type { BaseDraw } from './BaseDraw'; import type { ShiftsResult } from './ShiftsResult'; import type { ShiftsInterval } from './ShiftsInterval'; /** * * @export * @interface Shifts */ export interface Shifts extends BaseDraw { /** * * @type {Array} * @memberof Shifts */ intervals: Array; /** * * @type {Array} * @memberof Shifts */ participants: Array; /** * * @type {Array} * @memberof Shifts */ readonly results: Array; } /** * Check if a given object implements the Shifts interface. */ export declare function instanceOfShifts(value: object): value is Shifts; export declare function ShiftsFromJSON(json: any): Shifts; export declare function ShiftsFromJSONTyped(json: any, ignoreDiscriminator: boolean): Shifts; export declare function ShiftsToJSON(value?: Omit | null): any;