mirror of
https://github.com/csunny/DB-GPT.git
synced 2025-09-07 20:10:08 +00:00
15 lines
498 B
TypeScript
15 lines
498 B
TypeScript
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>;
|
|
}
|
|
}
|