11 lines
167 B
TypeScript
11 lines
167 B
TypeScript
|
|
/// <reference types="vite/client" />
|
||
|
|
|
||
|
|
declare module "react" {
|
||
|
|
interface InputHTMLAttributes<T> {
|
||
|
|
webkitdirectory?: string;
|
||
|
|
directory?: string;
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
export {};
|