Urara-Blog/node_modules/.pnpm-store/v3/files/58/8bb53482e39427afc1229615117417b8cc586689aea6efd19997b3644869acadb003aa83c741929bab8c862a3d048a01b958ba6d9cee3671e4baa6990d529a
2022-08-14 01:14:53 +08:00

11 lines
406 B
Text

/**
* @param {Context} context
* @param {string|null|undefined} input
* @param {SafeOptions & {encode?: Array<string>}} config
* @returns {string}
*/
export function safe(context: Context, input: string | null | undefined, config: SafeOptions & {
encode?: Array<string>;
}): string;
export type Context = import('../types.js').Context;
export type SafeOptions = import('../types.js').SafeOptions;