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