dk-plus
Version:
9 lines (8 loc) • 409 B
TypeScript
import type { returnType } from '../../_utils';
import type { PropType, ExtractPropTypes } from 'vue';
import type { dkPlusJustify } from '../../_interface';
export declare const dkRowProps: {
gutter: returnType<PropType<string | number>, string | number | null>;
justify: returnType<PropType<dkPlusJustify>, dkPlusJustify | null>;
};
export type DkRowPropsType = ExtractPropTypes<typeof dkRowProps>;