This commit is contained in:
icssoa
2025-08-11 16:25:32 +08:00
parent a5fde75b8a
commit d200753acf

View File

@@ -114,6 +114,6 @@ export class Pager {
} }
// 创建分页器实例 // 创建分页器实例
export function usePager(cb: PagerCallback) { export const usePager = (cb: PagerCallback): Pager => {
return new Pager(cb); return new Pager(cb);
} };