Urara-Blog/node_modules/.pnpm-store/v3/files/64/9565634b0195ff398b4e7f1ef7b6540bb31596decde3f008242d7f75d14ebc08c6155578a7c62249eeb1adaefd18b944be8288a3bb574629af53eddfd4a2bc
2022-08-14 01:14:53 +08:00

11 lines
392 B
Text

/**
* @typedef {import('../types.js').Context} Context
* @typedef {import('../types.js').Options} Options
*/
/**
* @param {Context} context
* @returns {Exclude<Options['bullet'], undefined>}
*/
export function checkBullet(context: Context): Exclude<Options['bullet'], undefined>;
export type Context = import('../types.js').Context;
export type Options = import('../types.js').Options;