This repository has been archived on 2026-02-28. You can view files and clone it, but cannot push or open issues or pull requests.
Flam3rboy bf8144baa2 🔧 build
2021-02-11 08:33:46 +01:00

12 lines
220 B
TypeScript

export interface Member {
id: bigint;
nick?: string;
roles: bigint[];
joined_at: number;
premium_since?: number;
deaf: boolean;
mute: boolean;
pending: boolean;
permissions: bigint;
}