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; readonly globalHttpRegions: Array; findHttpRegion(name: string): HttpRegion | undefined; }