UNPKG

308 BTypeScriptView Raw
1declare namespace parseLinkDestination {
2 interface ParseResult {
3 ok: boolean;
4 pos: number;
5 lines: number;
6 str: string;
7 }
8}
9
10declare function parseLinkDestination(str: string, pos: number, max: number): parseLinkDestination.ParseResult;
11
12export = parseLinkDestination;