/** * Created by user on 2018/4/19/019. */ import { AbstractTableDictCore, IOptions } from '@novel-segment/table-core-abstract'; import { ITSTypeAndStringLiteral } from 'ts-type/lib/helper/string'; import { EnumDictDatabase } from '@novel-segment/types'; /** * 原版 node-segment 的格式 * @deprecated */ export declare class TableDictSynonymPanGu extends AbstractTableDictCore { static readonly type: ITSTypeAndStringLiteral; constructor(type?: string, options?: IOptions, ...argv: any[]); add(data: [string, string] & string[], skipExists?: boolean): this; _add(n1: string, n2: string): void; protected _trim(s: string): string; } export default TableDictSynonymPanGu;