novel-segment
Version:
Chinese word segmentation 簡繁中文分词模块 以網路小說為樣本
11 lines (10 loc) • 318 B
TypeScript
import { IOptions } from './core';
import TableDictLine from './line';
/**
* 原版 node-segment 的格式
*/
export declare class TableDictStopword extends TableDictLine {
static readonly type = "STOPWORD";
constructor(type?: string, options?: IOptions, ...argv: any[]);
}
export default TableDictStopword;