mirror of
https://github.com/discordjs/discord.js.git
synced 2026-03-10 08:33: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
* fix: cpy-cli & pnpm-lock
* fix: increase icon size
* fix: icon size again
83 lines
2.3 KiB
TypeScript
83 lines
2.3 KiB
TypeScript
// Copyright (c) Microsoft Corporation. All rights reserved. Licensed under the MIT license.
|
|
// See LICENSE in the project root for license information.
|
|
|
|
/**
|
|
* Unique identifiers for console messages reported by API Extractor.
|
|
*
|
|
* @remarks
|
|
*
|
|
* These strings are possible values for the {@link ExtractorMessage.messageId} property
|
|
* when the `ExtractorMessage.category` is {@link ExtractorMessageCategory.Console}.
|
|
* @public
|
|
*/
|
|
export const enum ConsoleMessageId {
|
|
/**
|
|
* "You have changed the public API signature for this project. Updating ___"
|
|
*/
|
|
ApiReportCopied = 'console-api-report-copied',
|
|
|
|
/**
|
|
* "The API report file was missing, so a new file was created. Please add this file to Git: ___"
|
|
*/
|
|
ApiReportCreated = 'console-api-report-created',
|
|
|
|
/**
|
|
* "Unable to create the API report file. Please make sure the target folder exists: ___"
|
|
*/
|
|
ApiReportFolderMissing = 'console-api-report-folder-missing',
|
|
|
|
/**
|
|
* "You have changed the public API signature for this project.
|
|
* Please copy the file ___ to ___, or perform a local build (which does this automatically).
|
|
* See the Git repo documentation for more info."
|
|
*
|
|
* OR
|
|
*
|
|
* "The API report file is missing.
|
|
* Please copy the file ___ to ___, or perform a local build (which does this automatically).
|
|
* See the Git repo documentation for more info."
|
|
*/
|
|
ApiReportNotCopied = 'console-api-report-not-copied',
|
|
|
|
/**
|
|
* "The API report is up to date: ___"
|
|
*/
|
|
ApiReportUnchanged = 'console-api-report-unchanged',
|
|
|
|
/**
|
|
* "The target project appears to use TypeScript ___ which is newer than the bundled compiler engine;
|
|
* consider upgrading API Extractor."
|
|
*/
|
|
CompilerVersionNotice = 'console-compiler-version-notice',
|
|
|
|
/**
|
|
* Used for the information printed when the "--diagnostics" flag is enabled.
|
|
*/
|
|
Diagnostics = 'console-diagnostics',
|
|
|
|
/**
|
|
* "Found metadata in ___"
|
|
*/
|
|
FoundTSDocMetadata = 'console-found-tsdoc-metadata',
|
|
|
|
/**
|
|
* "Analysis will use the bundled TypeScript version ___"
|
|
*/
|
|
Preamble = 'console-preamble',
|
|
|
|
/**
|
|
* "Using custom TSDoc config from ___"
|
|
*/
|
|
UsingCustomTSDocConfig = 'console-using-custom-tsdoc-config',
|
|
|
|
/**
|
|
* "Writing: ___"
|
|
*/
|
|
WritingDocModelFile = 'console-writing-doc-model-file',
|
|
|
|
/**
|
|
* "Writing package typings: ___"
|
|
*/
|
|
WritingDtsRollup = 'console-writing-dts-rollup',
|
|
}
|