mirror of
https://github.com/Sevichecc/Urara-Blog.git
synced 2025-05-03 02:19:30 +08:00
8 lines
251 B
Text
8 lines
251 B
Text
/**
|
|
* @param {Link} node
|
|
* @param {Context} context
|
|
* @returns {boolean}
|
|
*/
|
|
export function formatLinkAsAutolink(node: Link, context: Context): boolean;
|
|
export type Link = import('mdast').Link;
|
|
export type Context = import('../types.js').Context;
|