mirror of
https://github.com/davidhalter/typeshed.git
synced 2025-12-10 05:51:52 +08:00
8 lines
163 B
Python
8 lines
163 B
Python
import sys
|
|
from typing import Optional
|
|
|
|
def find_library(name: str) -> Optional[str]: ...
|
|
|
|
if sys.platform == "win32":
|
|
def find_msvcrt() -> Optional[str]: ...
|