Update vendored windows libs

This commit is contained in:
Labrys of Knossos 2022-11-28 05:59:32 -05:00
commit b1cefa94e5
226 changed files with 33472 additions and 11882 deletions

View file

@ -0,0 +1,8 @@
from typing import Any, Callable, Optional
class ClassProperty(property):
def __get__(self, cls: Any, owner: Optional[type] = ...) -> Any: ...
class multimethod:
def __init__(self, func: Callable[..., Any]): ...
def __get__(self, instance: Any, owner: Optional[type]) -> Any: ...