style: format files
This commit is contained in:
parent
f3fa4ca380
commit
bef4d45a40
1 changed files with 8 additions and 5 deletions
|
@ -2,7 +2,7 @@ import { Client } from '../models/client.ts'
|
||||||
import { EmojiPayload } from '../types/emoji.ts'
|
import { EmojiPayload } from '../types/emoji.ts'
|
||||||
import { EMOJI } from '../types/endpoint.ts'
|
import { EMOJI } from '../types/endpoint.ts'
|
||||||
import { Base } from './base.ts'
|
import { Base } from './base.ts'
|
||||||
import { Guild } from "./guild.ts"
|
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 {
|
||||||
|
@ -10,7 +10,7 @@ export class Emoji extends Base {
|
||||||
name: string
|
name: string
|
||||||
roles?: string[]
|
roles?: string[]
|
||||||
user?: User
|
user?: User
|
||||||
guild?: Guild;
|
guild?: Guild
|
||||||
requireColons?: boolean
|
requireColons?: boolean
|
||||||
managed?: boolean
|
managed?: boolean
|
||||||
animated?: boolean
|
animated?: boolean
|
||||||
|
@ -40,14 +40,17 @@ 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
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue