1
0
mirror of https://github.com/matrix-org/matrix-js-sdk.git synced 2025-11-26 17:03:12 +03:00

TimestampToEventResponse.origin_server_ts should be a number (#3906)

This commit is contained in:
Will Hunt
2023-11-23 16:46:01 +00:00
committed by GitHub
parent af9993a710
commit 429c05ba85

View File

@@ -895,7 +895,7 @@ interface IRoomHierarchy {
export interface TimestampToEventResponse { export interface TimestampToEventResponse {
event_id: string; event_id: string;
origin_server_ts: string; origin_server_ts: number;
} }
interface IWhoamiResponse { interface IWhoamiResponse {