Urara-Blog/node_modules/.pnpm-store/v3/files/48/c67dfafaf56fc637099a955e5148ce52807e8c369781a11b7f5240dc24737d263150bef014cc3de257ebee425663136f35f61705ca3caded8bdfe966ad614f
2022-08-14 01:14:53 +08:00

11 lines
416 B
Text

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