Lisa Presentation
Usage
const DIG = require("dig.yd.js")
const {AttachmentBuilder} = require("discord.js")
// txt is the presentation text
async function getLisaPresentation(txt) {
const img = new DIG.LisaPresentation().getImage(txt)
const attach = new AttachmentBuilder(img).setName("lisapresentation.png")
return attach
}
getLisaPresentation("This is an example")import DIG from "dig.yd.js"
import {AttachmentBuilder} from "discord.js"
// txt is the presentation text
async function getLisaPresentation(txt) {
const img = new DIG.LisaPresentation().getImage(txt)
const attach = new AttachmentBuilder(img).setName("lisapresentation.png")
return attach
}
getLisaPresentation("This is an example")Results

Last updated