UNPKG

dify-components

Version:

This is a modern component library template based on Turborepo+Vue 3.5+TypeScript.

13 lines (10 loc) 231 B
export type AssistantPosition = 'right' | 'left' | 'top' | 'bottom'; export type Assistant = { name: string; id: string; }; export type PositionType = { position: AssistantPosition; bottom?: number; offset?: number; };