File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ export const AiActionOutputFormat = {
1616} as const
1717
1818export type AiActionOutputFormatType =
19- typeof AiActionOutputFormat [ keyof typeof AiActionOutputFormat ]
19+ ( typeof AiActionOutputFormat ) [ keyof typeof AiActionOutputFormat ]
2020
2121export type AiActionInvocationMetadata = {
2222 invocationResult ?: {
Original file line number Diff line number Diff 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
4646export 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
5252export type AiActionInstruction = {
5353 variables : Array < AiActionVariable >
You can’t perform that action at this time.
0 commit comments