# @generated
# To regenerate, run:
# ```
# STARLARK_RUST_REGENERATE_GOLDEN_TESTS=1 cargo test -p starlark --lib
# ```
# `name` type
These are where the module docs go
## name.\_\_exported\_\_
```python
def name.__exported__() -> None
```
Needs to be escaped when rendered in markdown.
---
## name.attr1
```python
name.attr1: str
```
Docs for attr1
---
## name.attr2
```python
name.attr2: str
```
---
## name.func1
```python
def name.func1(foo: str) -> str
```
Docs for func1
#### Parameters
* `foo`: Docs for foo
#### Returns
The string 'func1'
---
## name.func2
```python
def name.func2() -> str
```