import type { LegaleFetchRequestOptions } from '../../legale-fetch/index.js'; export interface LegaleFetchObject { fetch(path: string, request?: LegaleFetchRequestOptions): Promise; fetchJSON(path: string, request?: LegaleFetchRequestOptions): Promise; fetchBuffer(path: string, request?: LegaleFetchRequestOptions): Promise; }