blob: 7d9b4a680ad4781243f3b6bc203515b4f8f1e4d0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
import { M_POLL_END_EVENT_CONTENT } from "./poll_types";
import { IPartialEvent } from "../IPartialEvent";
import { MessageEvent } from "./MessageEvent";
import { EventType } from "../utility/events";
import { ExtensibleEvent } from "./ExtensibleEvent";
/**
* Represents a poll end/closure event.
*/
export declare class PollEndEvent extends ExtensibleEvent<M_POLL_END_EVENT_CONTENT> {
/**
* The poll start event ID referenced by the response.
*/
readonly pollEventId: string;
/**
* The closing message for the event.
*/
readonly closingMessage: MessageEvent;
/**
* Creates a new PollEndEvent from a pure format. Note that the event is *not*
* parsed here: it will be treated as a literal m.poll.response primary typed event.
* @param {IPartialEvent<M_POLL_END_EVENT_CONTENT>} wireFormat The event.
*/
constructor(wireFormat: IPartialEvent<M_POLL_END_EVENT_CONTENT>);
isEquivalentTo(primaryEventType: EventType): boolean;
serialize(): IPartialEvent<object>;
/**
* Creates a new PollEndEvent from a poll event ID.
* @param {string} pollEventId The poll start event ID.
* @param {string} message A closing message, typically revealing the top answer.
* @returns {PollStartEvent} The representative poll closure event.
*/
static from(pollEventId: string, message: string): PollEndEvent;
}
|