tav-ui
Version:
9 lines (8 loc) • 407 B
TypeScript
import type { ComputedRef, Ref } from 'vue';
import type { BasicTableProps } from '../types/table';
interface ComponentElRef<T extends HTMLElement = HTMLDivElement> {
$el: T;
}
declare type ComponentRef<T extends HTMLElement = HTMLDivElement> = ComponentElRef<T> | null;
export declare function useTableFullHeight(propsRef: ComputedRef<BasicTableProps>, tableElRef: Ref<ComponentRef>): void;
export {};