t-fighting-design
Version:
Fighting design can quickly build interactive interfaces in vue3 applications, which looks good.
13 lines (12 loc) • 399 B
TypeScript
import type { PropType, ExtractPropTypes } from 'vue';
export declare const Props: {
readonly height: {
readonly type: PropType<string | number>;
readonly default: () => string;
};
readonly padding: {
readonly type: PropType<string | number>;
readonly default: () => string;
};
};
export declare type HeaderPropsType = ExtractPropTypes<typeof Props>;