6 lines
123 B
Python
6 lines
123 B
Python
from typing import Callable
|
|
|
|
def _(message: str) -> str: ...
|
|
def ngettext(singular: str, plural: str, n: int) -> str: ...
|
|
|