Merge pull request #194 from maddymeows/fix-legacy-command-type
notnite.com 10 months ago fc7e5a54 f143fd0a
··· 121 121 }; 122 122 123 123 export type LegacyCommand = { 124 124 - match?: RegExp; 124 124 + match?: { 125 125 + regex: RegExp; 126 126 + }; 125 127 action: (content: string, context: LegacyContext) => LegacyReturn; 126 128 };