Urara-Blog/node_modules/.pnpm-store/v3/files/95/720c162cfed85f58a93c3f89b72515fcb920ac0a8c7d81e0ae06cd5ec3d3519bb13627c4c0d44877dd25c1be046129d68943bee23e9bf8026a6bc8f4539103
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['strong'], undefined>}
*/
export function checkStrong(context: Context): Exclude<Options['strong'], undefined>;
export type Context = import('../types.js').Context;
export type Options = import('../types.js').Options;