mirror of
https://github.com/python-pillow/Pillow.git
synced 2025-01-10 09:16:17 +03:00
19 lines
432 B
Python
19 lines
432 B
Python
from typing import Any
|
|
|
|
from typing_extensions import Buffer
|
|
|
|
class ImagingCore:
|
|
def __getattr__(self, name: str) -> Any: ...
|
|
|
|
class ImagingFont:
|
|
def __getattr__(self, name: str) -> Any: ...
|
|
|
|
class ImagingDraw:
|
|
def __getattr__(self, name: str) -> Any: ...
|
|
|
|
class PixelAccess:
|
|
def __getattr__(self, name: str) -> Any: ...
|
|
|
|
def font(image, glyphdata: Buffer) -> ImagingFont: ...
|
|
def __getattr__(name: str) -> Any: ...
|