new DBD.Dashboard({
invite: {
clientId: String,
scopes: String[],
permissions: String,
redirectUri: String,
otherParams: String
},
});
Example Usage
new DBD.Dashboard({
invite: {
clientId: "CLIENT_ID",
scopes: ["bot", "applications.commands"],
permissions: "8",
redirectUri: "http://localhost:3000",
otherParams: "test",
},
});
Props
The client ID of the bot.
The redirect URI of the bot.
The other params of the bot.