From 6e86827a9eb1cbdba7d3f1e259f4d8920e1d9a0e Mon Sep 17 00:00:00 2001 From: Keyrxng <106303466+Keyrxng@users.noreply.github.com> Date: Fri, 29 Nov 2024 02:12:45 +0000 Subject: [PATCH] chore: fix type --- static/types/plugins.ts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/static/types/plugins.ts b/static/types/plugins.ts index 7008007..f23d281 100644 --- a/static/types/plugins.ts +++ b/static/types/plugins.ts @@ -34,6 +34,9 @@ export type Manifest = { type: string; default: unknown; description?: string; + items?: { + type: string; + }; properties?: Record; required?: string[]; };