diff --git a/lib/server/index.ts b/lib/server/index.ts index 41305592..a7959207 100644 --- a/lib/server/index.ts +++ b/lib/server/index.ts @@ -2,14 +2,10 @@ import type { OxVehicle } from 'server/vehicle/class'; import type { PayAccountInvoice, DeleteAccountInvoice } from 'server/accounts'; import type { OxPlayer } from 'server/player/class'; import type { GetCharIdFromStateId } from 'server/player/db'; -import type { DeleteAccount, DepositMoney, WithdrawMoney } from 'server/accounts/db'; import type { DeleteGroup, GetGroupsByType, RemoveGroupPermission, SetGroupPermission } from 'server/groups'; import { Ox as OxCore, OxCommon } from 'lib'; interface OxServer extends OxCommon { - DeleteAccount: typeof DeleteAccount; - DepositMoney: typeof DepositMoney; - WithdrawMoney: typeof WithdrawMoney; SaveAllPlayers: typeof OxPlayer.saveAll; SaveAllVehicles: typeof OxVehicle.saveAll; GetCharIdFromStateId: typeof GetCharIdFromStateId;