this repo has no description

commands: fix LegacyCommand type

Maddy 2cd4f013 f143fd0a

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;
};