## crawlTypedValueAsync() function

Crawls the typed value asynchronously.

**Signature:**

```typescript
export declare function crawlTypedValueAsync(typedValue: TypedValue, visitor: AsyncCrawlerVisitor, options?: CrawlerOptions): Promise<void>;
```

## Parameters

| Parameter  | Type                                           | Description                                      |
|------------|------------------------------------------------|--------------------------------------------------|
| typedValue | [TypedValue](/content/docs/sdk/core.typedvalue) | The typed value to crawl.                       |
| visitor    | [AsyncCrawlerVisitor](/content/docs/sdk/core.asynccrawlervisitor) | The visitor functions to apply while crawling. |
| options    | [CrawlerOptions](/content/docs/sdk/core.crawleroptions) | _(Optional)_ Options for how to crawl the typed value. |

**Returns:**

Promise<void>

Promise to crawl the typed value.
