mirror of
https://github.com/csunny/DB-GPT.git
synced 2025-09-07 03:50:42 +00:00
refactor: Add frontend code to DB-GPT (#912)
This commit is contained in:
14
web/global.d.ts
vendored
Normal file
14
web/global.d.ts
vendored
Normal file
@@ -0,0 +1,14 @@
|
||||
declare namespace JSX {
|
||||
interface IntrinsicElements {
|
||||
summary: React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement>;
|
||||
'custom-view': React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement>;
|
||||
references: React.DetailedHTMLProps<
|
||||
React.HTMLAttributes<HTMLElement> & {
|
||||
title: string;
|
||||
references: any;
|
||||
},
|
||||
HTMLElement
|
||||
>;
|
||||
'chart-view': React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement>;
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user