import { ContentNotFoundError } from './ContentNotFoundError'; import { ContentItemResponse, RequestOptions } from './FilterBy'; type FetchRequestWithId = { id: string; }; type FetchRequestWithKey = { key: string; }; /** * @hidden */ export type FetchRequestType = keyof FetchRequestWithId | keyof FetchRequestWithKey; export type FetchResponse = { responses: Array | { error: ContentNotFoundError; }>; }; export type FetchRequest = { requests: Array; parameters?: RequestOptions; }; export {};