Adds initial progress
This commit is contained in:
commit
a0b668cb90
34 changed files with 2680 additions and 0 deletions
9
source/types/DiscordTypes.ts
Normal file
9
source/types/DiscordTypes.ts
Normal file
|
|
@ -0,0 +1,9 @@
|
|||
export type GuildMember = {
|
||||
server: string;
|
||||
memberid: string;
|
||||
}
|
||||
|
||||
export type Role = {
|
||||
server: string;
|
||||
roleid: string;
|
||||
};
|
||||
1
source/types/Nullable.ts
Normal file
1
source/types/Nullable.ts
Normal file
|
|
@ -0,0 +1 @@
|
|||
export type Nullable<T> = T | null | undefined;
|
||||
Loading…
Add table
Add a link
Reference in a new issue