This commit is contained in:
2025-12-14 11:29:43 +08:00
commit 240ea1b774
15 changed files with 2327 additions and 0 deletions

9
typings.d.ts vendored Normal file
View File

@@ -0,0 +1,9 @@
import type { DetailedHTMLProps, HTMLAttributes } from 'react';
declare module 'react' {
namespace JSX {
interface IntrinsicElements {
'kv-template': DetailedHTMLProps<HTMLAttributes<HTMLElement>, HTMLElement>;
}
}
}