import { HttpMethod } from '@emprespresso/pengueno'; export interface BaseRequest { url: string; method: HttpMethod; header(): Record; formData(): Promise; json(): Promise; text(): Promise; param(key: string): string | undefined; query(): Record; queries(): Record; } export * from './pengueno.js';