From fcecd7b7ae3aa22d1371d82c76de85f824423774 Mon Sep 17 00:00:00 2001 From: Jon Koops Date: Wed, 13 Dec 2023 18:35:02 +0100 Subject: [PATCH] Allow nested array values for `expand()` in type definition (#70) --- lib/url-template.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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;