mirror of
https://github.com/Sevichecc/Urara-Blog.git
synced 2025-05-02 18:49:30 +08:00
11 lines
398 B
Text
11 lines
398 B
Text
/**
|
|
* @typedef {import('../types.js').Context} Context
|
|
* @typedef {import('../types.js').Options} Options
|
|
*/
|
|
/**
|
|
* @param {Context} context
|
|
* @returns {Exclude<Options['emphasis'], undefined>}
|
|
*/
|
|
export function checkEmphasis(context: Context): Exclude<Options['emphasis'], undefined>;
|
|
export type Context = import('../types.js').Context;
|
|
export type Options = import('../types.js').Options;
|