mirror of
https://github.com/langgenius/dify.git
synced 2026-04-26 13:45:57 +08:00
# Conflicts: # api/core/app/apps/advanced_chat/app_runner.py # api/core/app/apps/pipeline/pipeline_generator.py # api/core/entities/mcp_provider.py # api/core/helper/marketplace.py # api/models/workflow.py # api/services/tools/tools_transform_service.py # api/tasks/document_indexing_task.py # api/tests/test_containers_integration_tests/core/__init__.py # api/tests/test_containers_integration_tests/tasks/test_document_indexing_task.py # dev/start-worker # docker/.env.example # web/app/components/base/chat/embedded-chatbot/hooks.tsx # web/app/components/workflow/hooks/use-workflow.ts # web/app/components/workflow/nodes/_base/components/workflow-panel/index.tsx # web/global.d.ts # web/pnpm-lock.yaml # web/service/use-plugins.ts
38 lines
831 B
TypeScript
38 lines
831 B
TypeScript
import './types/i18n'
|
|
import './types/jsx'
|
|
import './types/mdx'
|
|
import './types/assets'
|
|
|
|
declare module 'lamejs';
|
|
declare module 'lamejs/src/js/MPEGMode';
|
|
declare module 'lamejs/src/js/Lame';
|
|
declare module 'lamejs/src/js/BitStream';
|
|
declare module 'react-18-input-autosize';
|
|
|
|
declare module '*.mdx' {
|
|
let MDXComponent: (props: any) => JSX.Element
|
|
export default MDXComponent
|
|
}
|
|
|
|
// Google Analytics gtag types
|
|
type GtagEventParams = {
|
|
[key: string]: any
|
|
}
|
|
|
|
type Gtag = {
|
|
(command: 'config', targetId: string, config?: GtagEventParams): void
|
|
(command: 'event', eventName: string, eventParams?: GtagEventParams): void
|
|
(command: 'js', date: Date): void
|
|
(command: 'set', config: GtagEventParams): void
|
|
}
|
|
|
|
declare global {
|
|
interface Window {
|
|
gtag?: Gtag
|
|
dataLayer?: any[]
|
|
}
|
|
}
|
|
|
|
import './types/i18n'
|
|
export { }
|