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