fix: remove type "null" from Emoji#id
This commit is contained in:
parent
6c6334ee07
commit
f3fa4ca380
2 changed files with 4 additions and 4 deletions
|
@ -6,7 +6,7 @@ import { Guild } from "./guild.ts"
|
||||||
import { User } from './user.ts'
|
import { User } from './user.ts'
|
||||||
|
|
||||||
export class Emoji extends Base {
|
export class Emoji extends Base {
|
||||||
id: string | null
|
id: string
|
||||||
name: string
|
name: string
|
||||||
roles?: string[]
|
roles?: string[]
|
||||||
user?: User
|
user?: User
|
||||||
|
@ -41,14 +41,14 @@ export class Emoji extends Base {
|
||||||
/** Modify the given emoji. Requires the MANAGE_EMOJIS permission. Returns the updated emoji object on success. Fires a Guild Emojis Update Gateway event. */
|
/** Modify the given emoji. Requires the MANAGE_EMOJIS permission. Returns the updated emoji object on success. Fires a Guild Emojis Update Gateway event. */
|
||||||
async edit(data: ModifyGuildEmojiParams) {
|
async edit(data: ModifyGuildEmojiParams) {
|
||||||
if (!this.guild) throw new Error("Guild is undefined");
|
if (!this.guild) throw new Error("Guild is undefined");
|
||||||
const res = await this.client.rest.patch(EMOJI(this.guild.id, this.id!), data)
|
const res = await this.client.rest.patch(EMOJI(this.guild.id, this.id), data)
|
||||||
return new Emoji(this.client, res)
|
return new Emoji(this.client, res)
|
||||||
}
|
}
|
||||||
|
|
||||||
/** Delete the given emoji. Requires the MANAGE_EMOJIS permission. Returns `true` on success. Fires a Guild Emojis Update Gateway event. */
|
/** Delete the given emoji. Requires the MANAGE_EMOJIS permission. Returns `true` on success. Fires a Guild Emojis Update Gateway event. */
|
||||||
async delete(): Promise<boolean> {
|
async delete(): Promise<boolean> {
|
||||||
if (!this.guild) throw new Error("Guild is undefined");
|
if (!this.guild) throw new Error("Guild is undefined");
|
||||||
await this.client.rest.patch(EMOJI(this.guild.id, this.id!))
|
await this.client.rest.patch(EMOJI(this.guild.id, this.id))
|
||||||
return true
|
return true
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
import { UserPayload } from './user.ts'
|
import { UserPayload } from './user.ts'
|
||||||
|
|
||||||
export interface EmojiPayload {
|
export interface EmojiPayload {
|
||||||
id: string | null
|
id: string
|
||||||
name: string
|
name: string
|
||||||
roles?: string[]
|
roles?: string[]
|
||||||
user?: UserPayload
|
user?: UserPayload
|
||||||
|
|
Loading…
Reference in a new issue