import type { AxiosInstance, ResponseType } from 'axios'; import type { Configuration } from './generated'; export interface GraphFactoryOptions { axiosClient: AxiosInstance; config: Configuration; } export interface GraphRequestOptions { headers?: Record; params?: Record; signal?: AbortSignal; responseType?: ResponseType; }