From 198ae073cbb7787fcde1f4ca5306718b72f24297 Mon Sep 17 00:00:00 2001 From: Frazer Smith Date: Fri, 26 Jan 2024 13:26:47 +0000 Subject: [PATCH] chore(misc): update `Match` type with `freeze` property --- types/misc.d.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/types/misc.d.ts b/types/misc.d.ts index 91fb6cd17..687b70006 100644 --- a/types/misc.d.ts +++ b/types/misc.d.ts @@ -83,6 +83,7 @@ export interface Match { unTag?: string | string[], group?: string | number, reason?: string, + freeze?: boolean } export interface Net { @@ -91,4 +92,4 @@ export interface Net { isNet: boolean } -export type ParsedMatch = object[] \ No newline at end of file +export type ParsedMatch = object[]