1
0
mirror of https://github.com/matrix-org/matrix-js-sdk.git synced 2025-08-07 23:02:56 +03:00

Move new MatrixClient into place

This commit is contained in:
Travis Ralston
2021-05-31 22:46:25 -06:00
parent f027ddaf35
commit 67994f7a53
5 changed files with 3 additions and 2430 deletions

View File

@@ -14,7 +14,7 @@ See the License for the specific language governing permissions and
limitations under the License. limitations under the License.
*/ */
import { Callback } from "../1client"; import { Callback } from "../client";
export interface IJoinRoomOpts { export interface IJoinRoomOpts {
/** /**

File diff suppressed because it is too large Load Diff

View File

@@ -14,7 +14,7 @@ See the License for the specific language governing permissions and
limitations under the License. limitations under the License.
*/ */
import { MatrixClient } from "./1client"; import { MatrixClient } from "./client";
import {MatrixEvent} from "./models/event"; import {MatrixEvent} from "./models/event";
export type EventMapper = (obj: any) => MatrixEvent; export type EventMapper = (obj: any) => MatrixEvent;

View File

@@ -18,7 +18,7 @@ import { MemoryCryptoStore } from "./crypto/store/memory-crypto-store";
import { MemoryStore } from "./store/memory"; import { MemoryStore } from "./store/memory";
import { MatrixScheduler } from "./scheduler"; import { MatrixScheduler } from "./scheduler";
import { MatrixClient } from "./client"; import { MatrixClient } from "./client";
import { ICreateClientOpts } from "./1client"; import { ICreateClientOpts } from "./client";
export * from "./client"; export * from "./client";
export * from "./http-api"; export * from "./http-api";