Skip to content

Commit

Permalink
remove const keyword before enums
Browse files Browse the repository at this point in the history
  • Loading branch information
IIIMADDINIII committed Feb 24, 2024
1 parent ca15f1b commit 4ed902d
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion apps/api-extractor/src/api/ConsoleMessageId.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
*
* @public
*/
export const enum ConsoleMessageId {
export enum ConsoleMessageId {
/**
* "Analysis will use the bundled TypeScript version ___"
*/
Expand Down
2 changes: 1 addition & 1 deletion apps/api-extractor/src/api/ExtractorLogLevel.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
*
* @public
*/
export const enum ExtractorLogLevel {
export enum ExtractorLogLevel {
/**
* The message will be displayed as an error.
*
Expand Down
2 changes: 1 addition & 1 deletion apps/api-extractor/src/api/ExtractorMessage.ts
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ export interface IExtractorMessageProperties {
* Specifies a category of messages for use with {@link ExtractorMessage}.
* @public
*/
export const enum ExtractorMessageCategory {
export enum ExtractorMessageCategory {
/**
* Messages originating from the TypeScript compiler.
*
Expand Down
2 changes: 1 addition & 1 deletion apps/api-extractor/src/api/ExtractorMessageId.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
*
* @public
*/
export const enum ExtractorMessageId {
export enum ExtractorMessageId {
/**
* "The doc comment should not contain more than one release tag."
*/
Expand Down

0 comments on commit 4ed902d

Please sign in to comment.