massive update, probably broken
[dotfiles/.git] / .config / coc / extensions / node_modules / coc-pyright / node_modules / pyright / dist / typeshed-fallback / stdlib / grp.pyi
1 from typing import NamedTuple
2
3 class struct_group(NamedTuple):
4     gr_name: str
5     gr_passwd: str | None
6     gr_gid: int
7     gr_mem: list[str]
8
9 def getgrall() -> list[struct_group]: ...
10 def getgrgid(id: int) -> struct_group: ...
11 def getgrnam(name: str) -> struct_group: ...