import * as gateAPI from "./api/GateAPI"; import * as lobbyAPI from "./api/LobbyAPI"; import * as chatroomAPI from "./api/ChatRoomAPI"; import * as pushAPI from "./api/PushAPI"; import * as callingAPI from "./api/CallingAPI"; export namespace API { export import GateAPI = gateAPI; export import LobbyAPI = lobbyAPI; export import ChatRoomAPI = chatroomAPI; export import PushAPI = pushAPI; export import CallingAPI = callingAPI; }