ai-content-maker/.venv/Lib/site-packages/pypinyin/seg/simpleseg.pyi

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]: ...