UNPKG

vue-devui

Version:

DevUI components based on Vite and Vue3

17 lines (16 loc) 459 B
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 type CommentProps = ExtractPropTypes<typeof commentProps>;