We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 37824f4 commit 91e8ba4Copy full SHA for 91e8ba4
1 file changed
src/app/types/modules/irc-framework/irc-framework.d.ts
@@ -264,13 +264,13 @@ declare module 'irc-framework' {
264
};
265
}
266
267
- type Tags = Partial<Record<string, string | boolean>> &
268
- Partial<{
269
- account: string;
270
- batch: string;
271
- msgid: string;
272
- time: string;
273
- }>;
+ export type Tags = Partial<{
+ account: string;
+ batch: string;
+ msgid: string;
+ time: string;
+ [tagName: string]: string;
+ }>;
274
275
interface MessageEvent {
276
from_server: boolean;
0 commit comments