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

3 months ago
  1. /// <reference types="react-scripts" />
  2. /// <reference types="node" />
  3. /// <reference types="react" />
  4. /// <reference types="react-dom" />
  5. declare module "classnames" {
  6. import classNames from 'classnames'
  7. export default classNames
  8. }
  9. interface ReduxProps {
  10. storeData?: Record<string, any>;
  11. setStoreData?: (type: string, payload: any) => object;
  12. }
  13. type RefType = MutableRefObject<unknown> | ((instance: unknown) => void)
  14. type CommonObjectType<T = any> = Record<string, T>