Files
reallife-gamemode/ReallifeGamemode.Client/global.d.ts

25 lines
437 B
TypeScript

declare interface GlobalData {
InTuning: boolean,
HideGui: boolean,
Interaction: boolean,
InChat: boolean,
LoggedIn: boolean
}
declare interface AccountData {
regDate: string;
adminLevel: string;
faction: string;
factionRank: string;
group: string;
groupRank: string;
}
declare interface FactionRanks {
factionId: number,
ranks: FactionRank[]
}
declare interface FactionRank {
}