mirror of
https://github.com/facebook/lexical.git
synced 2025-05-21 09:07:44 +08:00
33 lines
795 B
Plaintext
33 lines
795 B
Plaintext
/**
|
|
* Copyright (c) Meta Platforms, Inc. and affiliates.
|
|
*
|
|
* This source code is licensed under the MIT license found in the
|
|
* LICENSE file in the root directory of this source tree.
|
|
*
|
|
* @flow strict
|
|
*/
|
|
|
|
import type {LinkAttributes} from '@lexical/link';
|
|
|
|
type ChangeHandler = (url: string | null, prevUrl: string | null) => void;
|
|
|
|
type LinkMatcherResult = {
|
|
attributes?: LinkAttributes,
|
|
index: number,
|
|
length: number,
|
|
text: string,
|
|
url: string,
|
|
};
|
|
|
|
export type LinkMatcher = (text: string) => LinkMatcherResult | null;
|
|
|
|
declare export function createLinkMatcherWithRegExp(
|
|
regExp: RegExp,
|
|
urlTransformer?: (text: string) => string,
|
|
): LinkMatcher;
|
|
|
|
declare export function AutoLinkPlugin(props: {
|
|
matchers: Array<LinkMatcher>,
|
|
onChange?: ChangeHandler,
|
|
}): React$Node;
|