You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
482 B
18 lines
482 B
/// <reference types="react-scripts" />
|
|
/// <reference types="node" />
|
|
/// <reference types="react" />
|
|
/// <reference types="react-dom" />
|
|
|
|
declare module "classnames" {
|
|
import classNames from 'classnames'
|
|
export default classNames
|
|
}
|
|
|
|
interface ReduxProps {
|
|
storeData?: Record<string, any>;
|
|
setStoreData?: (type: string, payload: any) => object;
|
|
}
|
|
|
|
type RefType = MutableRefObject<unknown> | ((instance: unknown) => void)
|
|
|
|
type CommonObjectType<T = any> = Record<string, T>
|