this repo has no description

Merge pull request #194 from maddymeows/fix-legacy-command-type

Changed files
+3 -1
packages
types
src
coreExtensions
+3 -1
packages/types/src/coreExtensions/commands.ts
···
};
export type LegacyCommand = {
-
match?: RegExp;
+
match?: {
+
regex: RegExp;
+
};
action: (content: string, context: LegacyContext) => LegacyReturn;
};