This commit is contained in:
2021-03-04 03:33:54 +03:00
parent 368382f63c
commit 5ac17d713f
67 changed files with 1824 additions and 119 deletions
+13
View File
@@ -0,0 +1,13 @@
import {MessageContext} from "../../base/base";
export declare class Command {
regexp: RegExp
title?: string
description?: string
requireAdmin?: boolean
requireReply?: boolean
requireCreator?: boolean
requireChat?: boolean
execute: (context: MessageContext, params: string[], reply?: MessageContext) => {}
}