@ly-nld/dishook
Version:
Simple Discord Webhook Wrapper
9 lines (7 loc) • 360 B
text/typescript
import { IAttachment } from './IAttachment'
export interface IImage {
url: string | IAttachment // Represents the URL of the image or an attachment object
proxy_url?: string // Represents the proxy URL of the image
height?: number // Represents the height of the image
width?: number // Represents the width of the image
}