mirror of
https://github.com/swc-project/swc.git
synced 2024-12-26 07:02:28 +03:00
13 lines
385 B
TypeScript
13 lines
385 B
TypeScript
// Loaded from https://deno.land/x/discordeno@11.0.0-rc.2/src/types/embeds/embed_field.ts
|
|
|
|
|
|
/** https://discord.com/developers/docs/resources/channel#embed-object-embed-field-structure */
|
|
export interface EmbedField {
|
|
/** Name of the field */
|
|
name: string;
|
|
/** Value of the field */
|
|
value: string;
|
|
/** Whether or not this field should display inline */
|
|
inline?: boolean;
|
|
}
|