import EmbedPage from "../../type/embedPage"; export default class TestPage extends EmbedPage { constructor(embedId: string, page: number, total: number) { super(embedId, page, total); this.setTitle("Test Embed"); this.setDescription(`You are viewing page ${page + 1}`); } }