discord-embed-visualizer
Version:
<div align="center">
32 lines (31 loc) • 773 B
TypeScript
import { IEmbed } from '../';
export declare type ExporterType = 'discordjs';
export declare const generateExport: (exporter: ExporterType, data: IEmbed) => {
title: any;
type: string;
description: any;
url: any;
timestamp: string;
color: number;
footer: {
text: string;
icon_url: string;
};
image: {
url: string;
height: number;
width: number;
};
thumbnail: {
url: string;
height: number;
width: number;
};
author: {
name: string;
url: string;
icon_url: string;
};
fields: import("../").IField[];
};
export declare const copyToClipBoard: (str: string, callback?: () => void) => Promise<void>;