10 lines
No EOL
308 B
TypeScript
10 lines
No EOL
308 B
TypeScript
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}`);
|
|
}
|
|
} |