Urara-Blog/node_modules/.pnpm-store/v3/files/9e/b6f1813ffcef7ef7f2e78c863e01835e67c3088169c84b219791f98ada4586655a8e7fc8c2987fc66a283aaa849e34668dbc8510936f673aaec88f6483841c
2022-08-14 01:14:53 +08:00

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;