@aplus-frontend/ui
Version:
15 lines (14 loc) • 485 B
TypeScript
import { ApFormSearchFormProps } from '../../../ap-form/interface';
import { Ref, ComputedRef } from 'vue';
declare const defaultBreakPoint: {
readonly xs: 0;
readonly sm: 768;
readonly md: 1280;
readonly lg: 1728;
};
type BreakPointNameType = keyof typeof defaultBreakPoint;
export type BreakPointType = {
[T in BreakPointNameType]: number;
};
export declare const useCountPerRow: (props: ApFormSearchFormProps, wrapperRef: Ref) => ComputedRef<number>;
export {};