UNPKG
cefr-analyzer
Version:
latest (0.1.1)
0.1.1
0.1.0
分析英文文本中各CEFR级别(A1-C2)单词的数量
cefr-analyzer
/
src
/
utils
/
types.ts
8 lines
(6 loc)
•
136 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
import
{
CEFRLevel
}
from
'../types'
;
export
interface
DifficultyScoreResult
{
score
:
number
;
level
:
CEFRLevel
;
note
?:
string
; }