UNPKG

503 BTypeScriptView Raw
1import * as parseLax from './parser/lax';
2import { ParseResult as Result } from './parser/result';
3import * as model from './model';
4import * as utils from './utils';
5export { model, utils, Result };
6export declare let parts: typeof parseLax;
7export declare function isPartial(source: string): boolean;
8export declare function parse(source: string): Result;
9export declare function stringify(header: model.Header): string[];
10export declare function assert(header: model.Header): model.Header;