Files
“shengyudong” 322ac74336 2025-12-25 upload
2025-12-25 11:16:59 +08:00

23 lines
494 B
Python

from __future__ import annotations
from pathlib import Path
from typing import final
def active_executables() -> list[Process]: ...
def executable_icon(path: Path | str) -> bytes: ...
@final
class Process:
@property
def executable(self) -> Path: ...
@property
def display_name(self) -> str: ...
@property
def is_visible(self) -> bool: ...
@property
def is_system(self) -> bool: ...
__all__ = [
"active_executables",
"executable_icon",
"Process",
]