19 lines
354 B
TypeScript
19 lines
354 B
TypeScript
/* app */
|
|
export enum SystemInputEnum {
|
|
'welcomeText' = 'welcomeText',
|
|
'variables' = 'variables',
|
|
'switch' = 'switch', // a trigger switch
|
|
'history' = 'history',
|
|
'userChatInput' = 'userChatInput'
|
|
}
|
|
|
|
export enum VariableInputEnum {
|
|
input = 'input',
|
|
select = 'select'
|
|
}
|
|
|
|
export enum AppTypeEnum {
|
|
basic = 'basic',
|
|
advanced = 'advanced'
|
|
}
|