@aplus-frontend/antdv
Version:
Vue basic component library maintained based on ant-design-vue
12 lines (11 loc) • 436 B
TypeScript
import type { Ref, InjectionKey, ComputedRef } from 'vue';
export interface RowContext {
gutter: ComputedRef<[number, number]>;
wrap: ComputedRef<boolean>;
supportFlexGap: Ref<boolean>;
}
export declare const RowContextKey: InjectionKey<RowContext>;
declare const useProvideRow: (state: RowContext) => void;
declare const useInjectRow: () => RowContext;
export { useInjectRow, useProvideRow };
export default useProvideRow;