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