UNPKG

git-mob-core

Version:
8 lines (7 loc) 254 B
import https from 'node:https'; export type BasicResponse = { statusCode: number | undefined; data: Record<string, unknown>; }; declare function httpFetch(url: string, options: https.RequestOptions): Promise<BasicResponse>; export { httpFetch };