Serving a payment option for my minecraft server so I don't have to pay for it all alone
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

1234567891011121314
  1. /// <reference types="assets/plugins/mithril/mithril/generated/apirequestimports" />
  2. declare class MinecraftPayService {
  3. static INSTANCE: MinecraftPayService;
  4. static Servers: MinecraftServer[];
  5. static Users: MinecraftUser[];
  6. static UserAccounts: MinecraftUserAccount[];
  7. private constructor();
  8. static RefreshCharges(): void;
  9. static CreateServer(server: MinecraftServer): void;
  10. static UpdateServer(id: number, server: MinecraftServer): void;
  11. static DeleteServer(id: number): void;
  12. static CreateUser(user: MinecraftUser): void;
  13. static DeleteUser(id: number): void;
  14. }