vuestic-ui
Version:
Vue 3 UI Framework
13 lines (12 loc) • 466 B
TypeScript
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>;