zview-plus
Version:
基于 Vue3 的 UI 组件库
12 lines (11 loc) • 350 B
TypeScript
import { ExtractPropTypes } from "vue";
export declare const LinkType: string[];
export declare const LinkProps: {
type: {
type: StringConstructor;
validator(value: string): boolean;
};
disabled: BooleanConstructor;
underline: BooleanConstructor;
};
export declare type LinkProps = ExtractPropTypes<typeof LinkProps>;