UNPKG

@aplus-frontend/antdv

Version:

Vue basic component library maintained based on ant-design-vue

11 lines (10 loc) 430 B
import type { InjectionKey, Ref } from 'vue'; export interface ExpandedRowProps { componentWidth: Ref<number>; fixHeader: Ref<boolean>; fixColumn: Ref<boolean>; horizonScroll: Ref<boolean>; } export declare const ExpandedRowContextKey: InjectionKey<ExpandedRowProps>; export declare const useProvideExpandedRow: (props: ExpandedRowProps) => void; export declare const useInjectExpandedRow: () => ExpandedRowProps;