masque/stubs/ezdxf/__init__.pyi

12 lines
383 B
Python
Raw Permalink Normal View History

2026-02-16 18:04:16 -08:00
from typing import Any, TextIO, Iterable
from .layouts import Modelspace, BlockRecords
class Drawing:
blocks: BlockRecords
@property
def layers(self) -> Iterable[Any]: ...
def modelspace(self) -> Modelspace: ...
def write(self, stream: TextIO) -> None: ...
def new(version: str = ..., setup: bool = ...) -> Drawing: ...
def read(stream: TextIO) -> Drawing: ...