9 lines
235 B
TypeScript
9 lines
235 B
TypeScript
import type { DetailedHTMLProps, HTMLAttributes } from 'react';
|
|
|
|
declare module 'react' {
|
|
namespace JSX {
|
|
interface IntrinsicElements {
|
|
'kv-template': DetailedHTMLProps<HTMLAttributes<HTMLElement>, HTMLElement>;
|
|
}
|
|
}
|
|
} |