dk-plus
Version:
8 lines (7 loc) • 379 B
TypeScript
import type { returnType } from '../../_utils';
import type { PropType, ExtractPropTypes } from 'vue';
export declare const HeaderProps: {
readonly height: returnType<PropType<string | number>, string | number | null>;
readonly padding: returnType<PropType<string | number>, string | number | null>;
};
export type HeaderPropsType = ExtractPropTypes<typeof HeaderProps>;