跳到主要内容
版本:2.0

Match

匹配对象

declare type Match = {
/**
* 正则表达式
*/
regExp: string;

/**
* 命令
*/
command: string;

/**
* 作用域类型
*/
fieldType: FieldType;

/**
* 需要管理员权限
*/
requireAdmin: boolean;

/**
* 限制参数
*/
restrictions?: string;

/**
* 描述
*/
description?: string;
};