interface PageOptions {
    allowEveryone: boolean;
    emojiList: [string, string];
    footer: string;
    owner: User;
    startPage: number;
    timeout: number;
}

Properties

allowEveryone: boolean

Whether buttons are usable by everyone. Overrides owner. Defaults to false

emojiList: [string, string]

Customize emojis to use. Defaults to arrows

footer: string

Footer text. Defaults to page numbers

owner: User

The user that gets control of buttons. Defaults to message author

startPage: number

Page to start at. Defaults to 0

timeout: number

How long buttons show in ms. Defaults to 120000