21 lines
547 B
TypeScript
21 lines
547 B
TypeScript
export { API_V1_PREFIX } from "@/api/paths";
|
|
export { getAdminCaptcha, postAdminLogin } from "@/api/admin-auth";
|
|
export { getAdminPing } from "@/api/admin-ping";
|
|
export {
|
|
getAdminPlayerWallets,
|
|
getAdminTransferOrders,
|
|
getAdminWalletTransactions,
|
|
} from "@/api/admin-wallet";
|
|
export {
|
|
getAdminDraw,
|
|
getAdminDrawResultBatches,
|
|
getAdminDraws,
|
|
postAdminPublishResultBatch,
|
|
} from "@/api/admin-draws";
|
|
export type {
|
|
AdminAuthCaptchaResponse,
|
|
AdminAuthLoginRequest,
|
|
AdminAuthLoginResponse,
|
|
AdminPingResponse,
|
|
} from "@/types/api";
|