9 lines
346 B
TypeScript
9 lines
346 B
TypeScript
import type { structure } from "../apiStructure/sammoRootAPI.js";
|
|
import type { APINamespaceType } from "./defs.js";
|
|
import { GetGameLoginToken } from "./RootAPI/GetGameLoginToken.js";
|
|
import { Login } from "./RootAPI/Login/index.js";
|
|
|
|
export const sammoRootAPI = {
|
|
Login,
|
|
GetGameLoginToken
|
|
} satisfies APINamespaceType<typeof structure>; |