Some warnings remain, none of them particularly useful, but I've decided not to disable them. However, I did decide to disable `@typescript-eslint/no-misused-promises` due to basically only being noise, and removed the respective comments made because of it.
8 lines
111 B
TypeScript
8 lines
111 B
TypeScript
export interface IGuild {
|
|
Name: string;
|
|
}
|
|
|
|
export interface ICreateGuildRequest {
|
|
guildName: string;
|
|
}
|