UNPKG

httpyac

Version:

HTTP/REST CLI Client for *.http files

10 lines (9 loc) 321 B
import { HttpSymbol } from './httpSymbol'; export interface SymbolParserResult { symbols: Array<HttpSymbol>; } export interface HttpRegionParserResultValid extends SymbolParserResult { endRegionLine?: number; nextParserLine: number; } export type HttpRegionParserResult = HttpRegionParserResultValid | false;