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