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