import { EmbedOptions } from 'eris'; import EmbedAuthor from './EmbedAuthor'; import EmbedField from './EmbedField'; import EmbedFooter from './EmbedFooter'; import EmbedImage from './EmbedImage'; import EmbedProvider from './EmbedProvider'; import EmbedThumbnail from './EmbedThumbnail'; import EmbedVideo from './EmbedVideo'; export default class Embed { title: string; type: string; description: string; url: string; color?: number; timestamp?: Date; author: EmbedAuthor; footer: EmbedFooter; video: EmbedVideo; thumbnail: EmbedThumbnail; image: EmbedImage; provider: EmbedProvider; fields: EmbedField[]; constructor(init?: Partial); withField(action: (field: EmbedField) => void): Embed; withColor(color: number): Embed; withTitle(title: string): Embed; serialize(): EmbedOptions; } //# sourceMappingURL=Embed.d.ts.map