mirror of
https://github.com/discordjs/discord.js.git
synced 2026-03-10 00:23:30 +01:00
* fix(ExceptText): don't display import("d..-types/v10"). in return type
* Squashed 'packages/api-extractor-model/' content from commit 39ecb196c
git-subtree-dir: packages/api-extractor-model
git-subtree-split: 39ecb196ca210bdf84ba6c9cadb1bb93571849d7
* Squashed 'packages/api-extractor/' content from commit 341ad6c51
git-subtree-dir: packages/api-extractor
git-subtree-split: 341ad6c51b01656d4f73b74ad4bdb3095f9262c4
* feat(api-extractor): add api-extractor and -model
* fix: package.json docs script
* fix(SourcLink): use <> instead of function syntax
* fix: make packages private
* fix: rest params showing in docs, added labels
* fix: missed two files
* feat: merge docs.json from docgen and docs.api.json
* fix: cpy-cli & pnpm-lock
* fix: increase icon size
* fix: icon size again
* feat: run both docs on mainlib
* chore: website fixes
* fix: more website fixes
* fix: tests and dev database script
* chore: comment out old docs
* fix: increase max fetch cache
* fix: env should always be a string
* fix: try to reapply patches
* fix: remove prepare for docgen
* fix: temporary cosmetic fixes
* fix: horizontal scroll
* feat: generate index for new docs
---------
Co-authored-by: Noel <buechler.noel@outlook.com>
40 lines
1021 B
TypeScript
40 lines
1021 B
TypeScript
export const BASE_URL = 'https://discord.js.org/docs/packages' as const;
|
|
|
|
export const BASE_URL_LEGACY = 'https://old.discordjs.dev/#/docs/discord.js' as const;
|
|
|
|
export const BASE_URL_DISCORD_API_TYPES = 'https://discord-api-types.dev' as const;
|
|
|
|
export const DESCRIPTION = 'Imagine a guide... that explores the many possibilities for your discord.js bot.';
|
|
|
|
export const GITHUB_BASE_PAGES_PATH = 'https://github.com/discordjs/discord.js/tree/main/apps/guide/src/pages';
|
|
|
|
export const PACKAGES = [
|
|
'discord.js',
|
|
'brokers',
|
|
'builders',
|
|
'collection',
|
|
'core',
|
|
'formatters',
|
|
'proxy',
|
|
'rest',
|
|
'next',
|
|
'util',
|
|
'voice',
|
|
'ws',
|
|
] as const;
|
|
|
|
/**
|
|
* The stable version of discord.js.
|
|
*/
|
|
export const VERSION = '14.13.0' as const;
|
|
|
|
/**
|
|
* The API version (for discord-api-types). This is prefixed with a "v".
|
|
*/
|
|
export const DISCORD_API_TYPES_VERSION = 'v10' as const;
|
|
|
|
/**
|
|
* The voice API version (for discord-api-types). This is prefixed with a "v".
|
|
*/
|
|
export const DISCORD_API_TYPES_VOICE_VERSION = 'v4' as const;
|