UNPKG

uri-template

Version:

Parse and expand URI templates as defined by http://tools.ietf.org/html/rfc6570

4 lines (3 loc) 249 B
import { Template, Expression } from "./ast"; export declare function expandTemplate(ast: Template, values: Record<string, unknown>): string; export declare function expandExpression(expression: Expression, values: Record<string, unknown>): string;