UNPKG
dify-components
Version:
latest (1.0.0)
1.0.0
This is a modern component library template based on Turborepo+Vue 3.5+TypeScript.
dify-components
/
packages
/
ui
/
src
/
components
/
Assistance
/
Assistance.types.ts
13 lines
(10 loc)
•
231 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
export
type
AssistantPosition
=
'right'
|
'left'
|
'top'
|
'bottom'
;
export
type
Assistant
= {
name
:
string
;
id
:
string
; };
export
type
PositionType
= {
position
:
AssistantPosition
;
bottom
?:
number
;
offset
?:
number
; };