mirror of
https://github.com/Sevichecc/Urara-Blog.git
synced 2025-05-06 19:19:13 +08:00
11 lines
406 B
Text
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;
|