export type OctokitRequest = { method: string; url: string; headers: Record; text: () => Promise; }; export type OctokitResponse = { status: number; headers?: Record; text?: string; }; export type HandlerOptions = { pathPrefix?: string; };