12 lines
283 B
Python
12 lines
283 B
Python
from typing import Any
|
|
|
|
class APIMod:
|
|
def __init__(self, acronym: str, settings: dict[str, Any]) -> None: ...
|
|
@property
|
|
def acronym(self) -> str: ...
|
|
@property
|
|
def settings(self) -> str: ...
|
|
|
|
def encode(obj: Any) -> bytes: ...
|
|
def decode(data: bytes) -> Any: ...
|