UNPKG

188 BTypeScriptView Raw
1export interface IMatch {
2 id: string;
3 context: {
4 sourceMessage: string;
5 [key: string]: unknown;
6 };
7 error?: Error | undefined;
8 [key: string]: unknown;
9}