mirror of https://github.com/zulip/zulip.git
poll_data: Fix implicit use of any.
Signed-off-by: Anders Kaseorg <anders@zulip.com>
This commit is contained in:
parent
7f131b880d
commit
3c2fae1171
|
@ -148,7 +148,7 @@ export class PollData {
|
|||
}
|
||||
|
||||
const key = `${sender_id},${idx}`;
|
||||
const votes = new Map();
|
||||
const votes = new Map<number, number>();
|
||||
|
||||
this.key_to_option.set(key, {
|
||||
option,
|
||||
|
|
Loading…
Reference in New Issue