From 894c517f168833375a915db0c5dbe325f12fdb75 Mon Sep 17 00:00:00 2001 From: Max Ast Date: Wed, 29 May 2024 11:54:12 -0700 Subject: [PATCH] remove min from ActivationRule type for now --- plugin/src/index.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/plugin/src/index.ts b/plugin/src/index.ts index b5d498c..3d1e65d 100644 --- a/plugin/src/index.ts +++ b/plugin/src/index.ts @@ -49,7 +49,6 @@ type ActivationType = "image" | "video" | "text" | "url"; export type ActivationRule = { type: ActivationType; - min?: number; max?: number; };