/** * Created by user on 2018/4/19/019. */ import { IDICT, IOptions } from './core'; import { TableDictSynonymPanGu } from './synonym.pangu'; export declare type ArrayTwoOrMore = { 0: T; 1: T; [n: number]: T; length: number; }; /** * 請注意 這與原版 node-segment 的格式不同 * * 原版為一對一 => 錯字,正字 * 這裡為一對多 並且順序與原版相反 => 正字,錯字,...以,分隔更多字 */ export declare class TableDictSynonym extends TableDictSynonymPanGu { constructor(type?: string, options?: IOptions, ...argv: any[]); /** * 緩存主KEY */ TABLE2: IDICT; add(data: ArrayTwoOrMore, skipExists?: boolean): this; } export default TableDictSynonym;