From b2be1d27e42a836e2abe37a03163220c877fdba0 Mon Sep 17 00:00:00 2001 From: Donald L Mull Jr Date: Mon, 18 Sep 2017 09:48:18 -0400 Subject: [PATCH] add names to public api --- index.d.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/index.d.ts b/index.d.ts index 347cdd1..70cd4e1 100644 --- a/index.d.ts +++ b/index.d.ts @@ -9,6 +9,8 @@ interface UrlPatternOptions { } declare class UrlPattern { + names: string[]; + constructor(pattern: string, options?: UrlPatternOptions); constructor(pattern: RegExp, groupNames?: string[]);