Files
QingLong/WebRoot/html/cdn/lib/tokens/pagination.d.ts

10 lines
368 B
TypeScript
Raw Normal View History

2025-08-15 09:13:13 +08:00
import type { InjectionKey, ComputedRef } from 'vue';
export interface ElPaginationContext {
currentPage?: ComputedRef<number>;
pageCount?: ComputedRef<number>;
disabled?: ComputedRef<boolean>;
changeEvent?: (val: number) => void;
handleSizeChange?: (val: number) => void;
}
export declare const elPaginationKey: InjectionKey<ElPaginationContext>;