harmony/src/types/templateTypes.ts
Catry 21b8954a7f Fix Typos
Co-Authored-By: yky4589 <8479056+yky4589@users.noreply.github.com>
Co-Authored-By: Choi Minseo <minseo0388@outlook.com>
Co-Authored-By: Aki <akiacode@users.noreply.github.com>
2020-10-22 15:19:30 +09:00

13 lines
300 B
TypeScript

interface Template {
code: string
name: string
description: string | undefined
usage_count: number
creator_id: string
creator: User
created_at: string
updated_at: string
source_guild_id: string
serialized_source_guild: Guild
is_dirty: boolean | undefined
}