UNPKG

vexip-ui

Version:

A Vue 3 UI library, Highly customizability, full TypeScript, performance pretty good

11 lines (10 loc) 437 B
import { ExtractPropTypes, PropType } from 'vue'; import { ConfigurableProps } from '@vexip-ui/config'; export declare const highlightProps: { inherit: PropType<boolean>; content: PropType<string>; keyWords: PropType<string[]>; ignoreCase: PropType<boolean>; }; export type HighlightProps = ExtractPropTypes<typeof highlightProps>; export type HighlightCProps = ConfigurableProps<HighlightProps, 'content' | 'keyWords'>;