// SpookVooper API - modules/interfaces/Interfaces.ts // Written by Brendan Lane - https://brndnln.dev/ export interface EntityUser { getUser: () => Promise getUsername: () => Promise getBalance: () => Promise hasDiscordRole: () => Promise getDiscordRoles: () => Promise sendCredits: () => Promise getStockOffers: () => Promise buyStock: () => Promise sellStock: () => Promise readonly svid: string readonly apikey: string } export interface ConfigUser { svid: string apikey?: string } export interface EntityGroup { svid: string }