UNPKG

lindera-js

Version:

A lidera japanese tokenizer wrapper for javascript and typescript

23 lines (18 loc) 468 B
/* tslint:disable */ /* eslint-disable */ interface KuromojiJSToken { word_id: number | null, word_type: string, word_position: number, surface_form: string, pos: string, pos_detail_1: string, pos_detail_2: string, pos_detail_3: string, conjugated_type: string, conjugated_form: string, basic_form: string, reading: string, pronunciation: string, } export function tokenize(input_text: string): KuromojiJSToken;