mirror of
https://github.com/koodo-reader/koodo-reader.git
synced 2025-12-23 23:17:55 -05:00
11 lines
250 B
TypeScript
11 lines
250 B
TypeScript
declare module "rc-color-picker" {}
|
|
declare module "react-tooltip" {
|
|
export const Tooltip: any;
|
|
export default Tooltip;
|
|
}
|
|
declare module "react" {
|
|
interface InputHTMLAttributes<T> extends HTMLAttributes<T> {
|
|
webkitdirectory?: string;
|
|
}
|
|
}
|