From ad203acf21a7885791af006d9d44f8c3d7a171e0 Mon Sep 17 00:00:00 2001 From: Matt Hill Date: Mon, 15 May 2023 11:37:09 -0600 Subject: [PATCH] forgot type --- lib/util/patterns.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/util/patterns.ts b/lib/util/patterns.ts index 775fc4e..ac281b0 100644 --- a/lib/util/patterns.ts +++ b/lib/util/patterns.ts @@ -11,7 +11,7 @@ export const ipv4: Pattern = { description: "Must be a valid IPv4 address", } -export const hostname = { +export const hostname: Pattern = { regex: regexes.hostname.toString(), description: "Must be a valid hostname", }