vue-devui
Version:
DevUI components based on Vite and Vue3
17 lines (16 loc) • 467 B
TypeScript
import type { ExtractPropTypes } from 'vue';
export declare const commentProps: {
readonly author: {
readonly type: StringConstructor;
readonly default: "";
};
readonly avatar: {
readonly type: StringConstructor;
readonly default: "";
};
readonly datetime: {
readonly type: StringConstructor;
readonly default: "";
};
};
export declare type CommentProps = ExtractPropTypes<typeof commentProps>;