From 8a7a863c6c13294c5cb942630af6647e9e47b6e0 Mon Sep 17 00:00:00 2001 From: Donald L Mull Jr Date: Mon, 18 Sep 2017 09:36:13 -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[]);