We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 10bb35e commit bc009e6Copy full SHA for bc009e6
types/global.d.ts
@@ -36,8 +36,8 @@ declare namespace Line {
36
export type EventSource = User | Group | Room;
37
38
export type User = Typed & { userId: string };
39
- export type Group = Typed & { groupId: string };
40
- export type Room = Typed & { roomId: string };
+ export type Group = Typed & { groupId: string, userId?: string };
+ export type Room = Typed & { roomId: string, userId?: string };
41
42
export type ReplyableEvent = EventBase & { replyToken: string };
43
0 commit comments