Files
storkit/frontend/src/vite-env.d.ts

15 lines
218 B
TypeScript
Raw Normal View History

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