UNPKG

vuestic-ui

Version:
13 lines (12 loc) 466 B
import { ExtractPropTypes, Ref, ComputedRef } from 'vue'; import type { DataTableRow } from '../types'; export declare const useAnimationNameProps: { animated: { type: BooleanConstructor; default: boolean; }; currentPage: { type: import("vue").PropType<number | undefined>; }; }; export declare const useAnimationName: (props: ExtractPropTypes<typeof useAnimationNameProps>, rows: Ref<DataTableRow[]>) => ComputedRef<string>;