Skip to content

Commit 7e0b624

Browse files
authored
Merge pull request #97 from kwattt/main
2 parents 2e24ae3 + 1cb21ce commit 7e0b624

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed

packages/client/index.d.ts

+16
Original file line numberDiff line numberDiff line change
@@ -261,6 +261,22 @@ declare interface DiscordMp {
261261
* ![DISCORD_RICH_PRESENCE](https://wiki.rage.mp/images/c/c4/UpdatedRichPresence.jpg),
262262
*/
263263
update(status: string, state: string): void;
264+
265+
266+
/**
267+
*
268+
* Ask user to authorize your application with Discord. Returns an authorization code.
269+
*
270+
* @param applicationId Application ID
271+
* @returns Promise<string>
272+
*
273+
* @example
274+
* ```js
275+
* const authorizationCode = await mp.discord.requestOAuth('123456789')
276+
* ```
277+
*/
278+
279+
requestOAuth2(applicationId: string): Promise<string>;
264280
}
265281

266282
declare interface ConsoleMp {

0 commit comments

Comments
 (0)