Feat: Input에 webkitdirectory 타입 추가

This commit is contained in:
홍창기 2024-09-20 14:42:41 +09:00
parent 850351f6b6
commit 3ba4f71240

7
frontend/src/index.d.ts vendored Normal file
View File

@ -0,0 +1,7 @@
import 'react';
declare module 'react' {
interface InputHTMLAttributes<T> extends AriaAttributes, DOMAttributes<T> {
webkitdirectory?: string;
}
}