UNPKG

lexical-vue

Version:

An extensible Vue 3 web text-editor based on Lexical.

15 lines (14 loc) 613 B
import * as __VLS_VINE from 'vue-vine/internals'; import type { LinkMatcher } from '@lexical/link'; export { type ChangeHandler, createLinkMatcherWithRegExp, type LinkMatcher, } from '@lexical/link'; type __VLS_VINE_AutoLinkPlugin_emits__ = __VLS_NormalizeEmits<__VLS_VINE.VueDefineEmits<{ change?: [value: { url: string | null; prevUrl: string | null; }]; }>>; export declare function AutoLinkPlugin(props: __VLS_VINE.VineComponentCommonProps & { matchers: LinkMatcher[]; } & { onChange?: __VLS_VINE_AutoLinkPlugin_emits__['change']; }, context: {}): __VLS_VINE.VueVineComponent;