vue-amazing-ui
Version:
An Amazing Vue3 UI Components Library, Using TypeScript.
21 lines (20 loc) • 779 B
TypeScript
import { CSSProperties } from 'vue';
export interface Props {
text?: string;
patterns?: string[];
autoEscape?: boolean;
caseSensitive?: boolean;
highlightTag?: string;
highlightClass?: string;
highlightStyle?: CSSProperties;
}
declare const _default: import('vue').DefineComponent<Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<Props> & Readonly<{}>, {
text: string;
patterns: string[];
autoEscape: boolean;
caseSensitive: boolean;
highlightTag: string;
highlightClass: string;
highlightStyle: CSSProperties;
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLSpanElement>;
export default _default;