mirror of
https://github.com/Unstructured-IO/unstructured.git
synced 2025-07-26 10:30:50 +00:00
10 lines
184 B
Python
10 lines
184 B
Python
![]() |
from __future__ import annotations
|
||
|
|
||
|
class DataFrame:
|
||
|
def to_html(
|
||
|
self,
|
||
|
index: bool = ...,
|
||
|
header: bool = ...,
|
||
|
na_rep: str = ...,
|
||
|
) -> str: ...
|