Skip to content

Commit 91e8ba4

Browse files
committed
Fix Tag type definition
1 parent 37824f4 commit 91e8ba4

1 file changed

Lines changed: 7 additions & 7 deletions

File tree

src/app/types/modules/irc-framework/irc-framework.d.ts

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -264,13 +264,13 @@ declare module 'irc-framework' {
264264
};
265265
}
266266

267-
type Tags = Partial<Record<string, string | boolean>> &
268-
Partial<{
269-
account: string;
270-
batch: string;
271-
msgid: string;
272-
time: string;
273-
}>;
267+
export type Tags = Partial<{
268+
account: string;
269+
batch: string;
270+
msgid: string;
271+
time: string;
272+
[tagName: string]: string;
273+
}>;
274274

275275
interface MessageEvent {
276276
from_server: boolean;

0 commit comments

Comments
 (0)