UNPKG

318 BTypeScriptView Raw
1import { IOptions } from './core';
2import TableDictLine from './line';
3/**
4 * 原版 node-segment 的格式
5 */
6export declare class TableDictStopword extends TableDictLine {
7 static readonly type = "STOPWORD";
8 constructor(type?: string, options?: IOptions, ...argv: any[]);
9}
10export default TableDictStopword;