@pho9ubenaa/remark-mask-text-beta
Version:
A remark plugin to mask text content with block characters
19 lines (18 loc) • 553 B
TypeScript
import type { StrictRemarkPlugin } from "./lib/types/plugin.js";
export type { Options } from "./lib/index.js";
export type { RemarkMaskTextOptions, StrictRemarkPlugin, } from "./lib/types/plugin.js";
/**
* Add support for masking text content.
*
* This plugin provides strict type checking when used in arrays,
* ensuring that only valid options are accepted.
*
* @this
* Unified processor.
* @param
* Configuration (optional).
* @returns
* Nothing.
*/
declare const remarkMaskText: StrictRemarkPlugin;
export default remarkMaskText;