UNPKG

@novel-segment/table-line

Version:
14 lines (13 loc) 453 B
import { AbstractTableDictCore } from '@novel-segment/table-core-abstract'; /** * 原版 node-segment 的格式 */ export declare abstract class TableDictLine extends AbstractTableDictCore<boolean> { exists(data: any, ...argv: any[]): boolean; add(word: string | string[]): this; _add(word: string): void; remove(word: string): this; _remove(word: string): void; stringify(LF?: string): string; } export default TableDictLine;