UNPKG

dify-components

Version:

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

14 lines (11 loc) 364 B
/// <reference types="vite/client" /> /// <reference types="ant-design-vue/typings/global.d.ts" /> /// <reference types="@difylib/ui/global.d.ts" /> declare module '*.vue' { import type { DefineComponent } from 'vue'; const component: DefineComponent<{}, {}, any>; export default component; } declare module 'difylib/ui' { export * from '@difylib/ui'; }