Urara-Blog/node_modules/.pnpm-store/v3/files/e7/25d3c6d46f996ed724a381d721c0159f4b6a59bf9bdcdcaec3cd7b511859da2a84134dc36aed8b1726685b37a050bac8bd38e794160652553a132176384ef8
2022-08-14 01:14:53 +08:00

11 lines
389 B
Text

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