14 lines
282 B
TypeScript
14 lines
282 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'
|
|
}
|