diff --git a/lib/url-template.d.ts b/lib/url-template.d.ts index feae94a..8a9b227 100644 --- a/lib/url-template.d.ts +++ b/lib/url-template.d.ts @@ -1,7 +1,7 @@ export type PrimitiveValue = string | number | boolean | null; export interface Template { - expand(context: Record>): string; + expand(context: Record>): string; } export function parseTemplate(template: string): Template;