Urara-Blog/node_modules/.pnpm-store/v3/files/0b/8ba29c666b4be0ad94a9d82a8ed029c3c2871fc937cb8b5d8036d1a7204d1f7e003347e1a9f83012e3feaad7233052f271a2a87fa46506fb9de6b1a4384ce3
2022-08-14 01:14:53 +08:00

11 lines
386 B
Text

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