@nextcloud/vue
Version:
Nextcloud vue components
16 lines (15 loc) • 441 B
TypeScript
import { Literal } from 'unist';
/**
* Unist literal node with string value like code blocks or text nodes
*/
export interface TextNode extends Literal {
value: string;
}
/**
* Regex pattern to match links to be resolved by the link-reference provider
*/
export declare const URL_PATTERN: RegExp;
/**
* Regex pattern to identify strings as links and then making them clickable
*/
export declare const URL_PATTERN_AUTOLINK: RegExp;