feat: make max-calls of schedule nullable

This commit is contained in:
Acbox
2026-02-02 22:48:06 +08:00
parent 78c6758f34
commit 2b8b537523
6 changed files with 48 additions and 16 deletions
+1 -1
View File
@@ -4,5 +4,5 @@ export interface Schedule {
name: string
description: string
command: string
maxCalls?: number
maxCalls?: number | null
}