12 lines
186 B
Python
12 lines
186 B
Python
|
# -*- coding: utf-8 -*-
|
||
|
from typing import List, Text
|
||
|
|
||
|
|
||
|
def seg(hans: Text) -> List[Text]: ...
|
||
|
|
||
|
|
||
|
def simple_seg(hans: Text) -> List[Text]: ...
|
||
|
|
||
|
|
||
|
def _seg(chars: Text) -> List[Text]: ...
|