UNPKG

@zhangfuxing/keyword-filter

Version:
20 lines (17 loc) 355 B
// Type definitions declare class WordFilter { /** * Sensitive word filter * * Options: * - `dir` Optional, the folder where the keyword files are located */ constructor(dir?: string); /** * Filter keyword method * * `text` Text to filter */ filter(text: string): string; } export = WordFilter