mirror of
https://github.com/Unstructured-IO/unstructured.git
synced 2025-07-26 10:30:50 +00:00
17 lines
434 B
Python
17 lines
434 B
Python
![]() |
from typing import Any, Callable, Generic, TypeVar
|
||
|
|
||
|
from docx.oxml.xmlchemy import BaseOxmlElement
|
||
|
|
||
|
_T = TypeVar("_T")
|
||
|
|
||
|
class lazyproperty(Generic[_T]):
|
||
|
def __init__(self, fget: Callable[..., _T]) -> None: ...
|
||
|
def __get__(self, obj: Any, type: Any = None) -> _T: ...
|
||
|
def __set__(self, obj: Any, value: Any) -> None: ...
|
||
|
|
||
|
class ElementProxy:
|
||
|
@property
|
||
|
def element(self) -> BaseOxmlElement: ...
|
||
|
|
||
|
class Parented: ...
|