Skip to content

Commit

Permalink
Fixes prettier
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelfarrell76 committed Dec 7, 2023
1 parent 7dc2a07 commit c263d63
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@
"eslint-plugin-import": "2.29.0",
"eslint-plugin-jsdoc": "^46.9.0",
"mocha": "^10.2.0",
"prettier": "^2.8.7",
"prettier": "^2.7.1",
"ts-node": "^10.9.1",
"typescript": "^5.3.2"
},
Expand Down
4 changes: 2 additions & 2 deletions src/largeLanguageModels.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ export const ChatCompletionRole = makeEnum({

/** Overrides type */
export type ChatCompletionRole =
(typeof ChatCompletionRole)[keyof typeof ChatCompletionRole];
typeof ChatCompletionRole[keyof typeof ChatCompletionRole];

/**
* The supported product areas where the prompts can be run
Expand Down Expand Up @@ -46,4 +46,4 @@ export const LargeLanguageModelClient = makeEnum({

/** Overrides type */
export type LargeLanguageModelClient =
(typeof LargeLanguageModelClient)[keyof typeof LargeLanguageModelClient];
typeof LargeLanguageModelClient[keyof typeof LargeLanguageModelClient];

0 comments on commit c263d63

Please sign in to comment.