chore: v2.10.0
This commit is contained in:
parent
6a98c3a633
commit
6ef903c965
@ -14,7 +14,7 @@
|
|||||||
|
|
||||||
## About
|
## About
|
||||||
|
|
||||||
<strong>Welcome to `discord.js-selfbot-v13@v2.9`, based on `discord.js@13.12`</strong>
|
<strong>Welcome to `discord.js-selfbot-v13@v2.10`, based on `discord.js@13.12`</strong>
|
||||||
|
|
||||||
- discord.js-selfbot-v13 is a [Node.js](https://nodejs.org) module that allows user accounts to interact with the Discord API v9.
|
- discord.js-selfbot-v13 is a [Node.js](https://nodejs.org) module that allows user accounts to interact with the Discord API v9.
|
||||||
|
|
||||||
@ -109,16 +109,10 @@ Credit: <img src="https://cdn.discordapp.com/emojis/889092230063734795.png" alt=
|
|||||||
- See [the contribution guide](https://github.com/discordjs/discord.js/blob/main/.github/CONTRIBUTING.md) if you'd like to submit a PR.
|
- See [the contribution guide](https://github.com/discordjs/discord.js/blob/main/.github/CONTRIBUTING.md) if you'd like to submit a PR.
|
||||||
|
|
||||||
## Need help?
|
## Need help?
|
||||||
Contact me in Discord: [Elysia#1782](https://discord.com/users/721746046543331449)
|
|
||||||
|
|
||||||
> **Note**
|
|
||||||
> Because too many people open DMs with me, I won't support via Discord
|
|
||||||
|
|
||||||
Github Discussion: [Here](https://github.com/aiko-chan-ai/discord.js-selfbot-v13/discussions)
|
Github Discussion: [Here](https://github.com/aiko-chan-ai/discord.js-selfbot-v13/discussions)
|
||||||
|
|
||||||
## Credits
|
## Credits
|
||||||
- [Discord.js](https://github.com/discordjs/discord.js)
|
- [Discord.js](https://github.com/discordjs/discord.js)
|
||||||
- [Discord S.C.U.M](https://github.com/Merubokkusu/Discord-S.C.U.M)
|
|
||||||
- [Discord Console Hack](https://github.com/hxr404/Discord-Console-hacks)
|
- [Discord Console Hack](https://github.com/hxr404/Discord-Console-hacks)
|
||||||
|
|
||||||
## <strong><img src="https://cdn.discordapp.com/attachments/820557032016969751/952436539118456882/flag-vietnam_1f1fb-1f1f3.png" alt="." width="20" height="20"/> Vietnamese</strong>
|
## <strong><img src="https://cdn.discordapp.com/attachments/820557032016969751/952436539118456882/flag-vietnam_1f1fb-1f1f3.png" alt="." width="20" height="20"/> Vietnamese</strong>
|
||||||
|
File diff suppressed because one or more lines are too long
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "discord.js-selfbot-v13",
|
"name": "discord.js-selfbot-v13",
|
||||||
"version": "2.9.20",
|
"version": "2.10.0",
|
||||||
"description": "A unofficial discord.js fork for creating selfbots [Based on discord.js v13]",
|
"description": "A unofficial discord.js fork for creating selfbots [Based on discord.js v13]",
|
||||||
"main": "./src/index.js",
|
"main": "./src/index.js",
|
||||||
"types": "./typings/index.d.ts",
|
"types": "./typings/index.d.ts",
|
||||||
|
4
typings/index.d.ts
vendored
4
typings/index.d.ts
vendored
@ -5351,8 +5351,8 @@ export type CacheConstructors = {
|
|||||||
// Narrowing the type of `manager.name` doesn't propagate type information to `holds` and the return type.
|
// Narrowing the type of `manager.name` doesn't propagate type information to `holds` and the return type.
|
||||||
export type CacheFactory = (
|
export type CacheFactory = (
|
||||||
manager: CacheConstructors[keyof Caches],
|
manager: CacheConstructors[keyof Caches],
|
||||||
holds: Caches[typeof manager['name']][1],
|
holds: Caches[(typeof manager)['name']][1],
|
||||||
) => typeof manager['prototype'] extends DataManager<infer K, infer V, any> ? Collection<K, V> : never;
|
) => (typeof manager)['prototype'] extends DataManager<infer K, infer V, any> ? Collection<K, V> : never;
|
||||||
|
|
||||||
export type CacheWithLimitsOptions = {
|
export type CacheWithLimitsOptions = {
|
||||||
[K in keyof Caches]?: Caches[K][0]['prototype'] extends DataManager<infer K, infer V, any>
|
[K in keyof Caches]?: Caches[K][0]['prototype'] extends DataManager<infer K, infer V, any>
|
||||||
|
2
typings/rawDataTypes.d.ts
vendored
2
typings/rawDataTypes.d.ts
vendored
@ -279,4 +279,4 @@ export interface APIApplicationRoleConnectionMetadata {
|
|||||||
name_localizations?: LocalizationMap;
|
name_localizations?: LocalizationMap;
|
||||||
description: string;
|
description: string;
|
||||||
description_localizations?: LocalizationMap;
|
description_localizations?: LocalizationMap;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user