Skip to main content
Module

x/harmony/src/types/template.ts

An easy to use Discord API Library for Deno.
Go to Latest
File
import type { GuildPayload } from './guild.ts'import type { UserPayload } from './user.ts'
export interface TemplatePayload { code: string name: string description: string | null usage_count: number creator_id: string creator: UserPayload created_at: string updated_at: string source_guild_id: string serialized_source_guild: GuildPayload is_dirty: boolean | null}