Skip to content

Commit 37035b6

Browse files
committed
fix: prettier
1 parent 559a1f1 commit 37035b6

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

lib/entities/ai-action-invocation.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ export const AiActionOutputFormat = {
1616
} as const
1717

1818
export type AiActionOutputFormatType =
19-
typeof AiActionOutputFormat[keyof typeof AiActionOutputFormat]
19+
(typeof AiActionOutputFormat)[keyof typeof AiActionOutputFormat]
2020

2121
export type AiActionInvocationMetadata = {
2222
invocationResult?: {

lib/entities/ai-action.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,13 +41,13 @@ export const AiActionScope = {
4141
Entry: 'Entry',
4242
EntryField: 'EntryField',
4343
} as const
44-
export type AiActionScopeType = typeof AiActionScope[keyof typeof AiActionScope]
44+
export type AiActionScopeType = (typeof AiActionScope)[keyof typeof AiActionScope]
4545

4646
export const AiActionOutputType = {
4747
Generation: 'Generation',
4848
Suggestion: 'Suggestion',
4949
} as const
50-
export type AiActionOutputTypeType = typeof AiActionOutputType[keyof typeof AiActionOutputType]
50+
export type AiActionOutputTypeType = (typeof AiActionOutputType)[keyof typeof AiActionOutputType]
5151

5252
export type AiActionInstruction = {
5353
variables: Array<AiActionVariable>

0 commit comments

Comments
 (0)