UNPKG

httpyac

Version:

HTTP/REST CLI Client for *.http files

12 lines (11 loc) 399 B
import { HttpFileHooks } from './hooks'; import { HttpRegion } from './httpRegion'; import { PathLike } from './pathLike'; export interface HttpFile { fileName: PathLike; readonly rootDir?: PathLike; readonly hooks: HttpFileHooks; readonly httpRegions: Array<HttpRegion>; readonly globalHttpRegions: Array<HttpRegion>; findHttpRegion(name: string): HttpRegion | undefined; }