(
datasource: datasources.DataSource,
debug_datasource: datasources.StaticDataSource | None = None,
*,
supported_components: Iterable[str] = ...,
)
| 23 | |
| 24 | @overload |
| 25 | def table_from_datasource( |
| 26 | datasource: datasources.DataSource, |
| 27 | debug_datasource: datasources.StaticDataSource | None = None, |
| 28 | *, |
| 29 | supported_components: Iterable[str] = ..., |
| 30 | ) -> tables.Table[Any]: ... |
| 31 | |
| 32 | |
| 33 | @overload |