Files
mnote/wolai-backend/.venv312/Lib/site-packages/pypinyin/seg/simpleseg.pyi
T

12 lines
186 B
Python
Raw Normal View History

2025-12-08 19:56:24 +08:00
# -*- 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]: ...