masque/stubs/ezdxf/__init__.pyi
2026-02-16 20:48:26 -08:00

13 lines
410 B
Python

from typing import Any, TextIO
from collections.abc import 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: ...