Files
pig-farm-controller-fe/node_modules/element-plus/lib/components/pagination/src/constants.d.ts
2025-09-19 14:25:20 +08:00

10 lines
397 B
TypeScript

import type { ComputedRef, InjectionKey, WritableComputedRef } from 'vue';
export interface ElPaginationContext {
currentPage?: WritableComputedRef<number>;
pageCount?: ComputedRef<number>;
disabled?: ComputedRef<boolean>;
changeEvent?: (val: number) => void;
handleSizeChange?: (val: number) => void;
}
export declare const elPaginationKey: InjectionKey<ElPaginationContext>;