import type { BackendServiceApi } from '@slickgrid-universal/common'; import type { GridOdataService } from '../services/index.js'; import type { OdataOption } from './odataOption.interface.js'; export interface OdataServiceApi extends BackendServiceApi { /** Backend Service Options */ options?: Partial; /** Backend Service instance (could be OData or GraphQL Service) */ service: GridOdataService; } //# sourceMappingURL=odataServiceApi.interface.d.ts.map