Example code typescript: ```ts const myPaginatedMessage = new PaginatedMessage(); // Once you have an instance of PaginatedMessage you can call various methods on it to add pages to it. // For more details see each method's documentation. myPaginatedMessage.addPageEmbed((embed) => { embed .setColor('#FF0000') .setDescription('example description'); return embed; }); myPaginatedMessage.run(interaction, interaction.user) ```