From 3fbf65355d301bfc8ed012078e2be89a5f53df48 Mon Sep 17 00:00:00 2001 From: R Midhun Suresh Date: Wed, 1 Dec 2021 11:21:11 +0530 Subject: [PATCH] Rename Ctor to Options Co-authored-by: Bruno Windels --- src/matrix/net/HomeServerApi.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/matrix/net/HomeServerApi.ts b/src/matrix/net/HomeServerApi.ts index f7e39544..a94c01da 100644 --- a/src/matrix/net/HomeServerApi.ts +++ b/src/matrix/net/HomeServerApi.ts @@ -28,7 +28,7 @@ type RequestMethod = "POST" | "GET" | "PUT"; const CS_R0_PREFIX = "/_matrix/client/r0"; const DEHYDRATION_PREFIX = "/_matrix/client/unstable/org.matrix.msc2697.v2"; -type Ctor = { +type Options = { homeserver: string; accessToken: string; request: RequestFunction;