@jiaozhiye/qm-design-react 1.7.2 → 1.7.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,3 +1,3 @@
1
1
  type noop = (...args: any[]) => any;
2
- export default function useDebounce<T extends noop>(fn: T, delay?: number): () => void;
2
+ export default function useDebounce<T extends noop>(fn: T, delay?: number): (...args: any[]) => void;
3
3
  export {};
package/lib/index.d.ts CHANGED
@@ -16,6 +16,8 @@ export type { QmEmptyProps } from './empty';
16
16
  export { default as QmEmpty } from './empty';
17
17
  export type { QmSpinProps } from './spin';
18
18
  export { default as QmSpin } from './spin';
19
+ export type { QmScrollbarProps } from './scrollbar';
20
+ export { default as QmScrollbar } from './scrollbar';
19
21
  export type { QmDownloadProps } from './download';
20
22
  export { default as QmDownload } from './download';
21
23
  export type { QmAnchorProps, QmAnchorItemProps } from './anchor';