fix(styles): fix useTable type

This commit is contained in:
Soybean
2024-05-08 10:33:55 +08:00
parent 1978397c90
commit 071241f8cb
2 changed files with 9 additions and 8 deletions

View File

@ -57,12 +57,6 @@ export type TableConfig<A extends ApiFn, T, C> = {
* @default true
*/
immediate?: boolean;
/**
* whether to display the total items count
*
* @default false
*/
showTotal?: boolean;
};
export default function useHookTable<A extends ApiFn, T, C>(config: TableConfig<A, T, C>) {