UNPKG

400 BTypeScriptView Raw
1import { ParameterDeclaration } from "ts-morph";
2import { PathParam } from "../definitions";
3import { ParserError } from "../errors";
4import { LociTable } from "../locations";
5import { TypeTable } from "../types";
6import { Result } from "../util";
7export declare function parsePathParams(parameter: ParameterDeclaration, typeTable: TypeTable, lociTable: LociTable): Result<PathParam[], ParserError>;