mirror of https://github.com/nocodb/nocodb
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
433 B
21 lines
433 B
4 days ago
|
import type { UITypes } from 'nocodb-sdk'
|
||
|
|
||
|
export enum AiWizardTabsType {
|
||
|
AUTO_SUGGESTIONS = 'AUTO_SUGGESTIONS',
|
||
|
PROMPT = 'PROMPT',
|
||
|
}
|
||
|
|
||
|
export interface PredictedFieldType {
|
||
|
title: string
|
||
|
type: UITypes
|
||
|
column_name?: string
|
||
|
options?: string[]
|
||
|
colOptions?: Record<string, any>
|
||
|
formula?: string
|
||
|
description?: string
|
||
|
formState?: Record<string, any>
|
||
|
selected?: boolean
|
||
|
tab?: AiWizardTabsType
|
||
|
ai_temp_id: string
|
||
|
}
|