mirror of
https://github.com/Sevichecc/Urara-Blog.git
synced 2025-05-02 21:49:31 +08:00
15 lines
535 B
Text
15 lines
535 B
Text
/**
|
|
* @type {Handle}
|
|
* @param {ImageReference} node
|
|
*/
|
|
export function imageReference(node: ImageReference, _: import("../types.js").Parent | null | undefined, context: import("../types.js").Context, safeOptions: import("../types.js").SafeOptions): string;
|
|
export namespace imageReference {
|
|
export { imageReferencePeek as peek };
|
|
}
|
|
export type ImageReference = import('mdast').ImageReference;
|
|
export type Handle = import('../types.js').Handle;
|
|
/**
|
|
* @type {Handle}
|
|
*/
|
|
declare function imageReferencePeek(): string;
|
|
export {};
|