12 lines
141 B
Markdown
12 lines
141 B
Markdown
---
|
|
sidebar_label: Awaitable
|
|
---
|
|
|
|
# Awaitable type
|
|
|
|
**Signature:**
|
|
|
|
```typescript
|
|
export declare type Awaitable<T> = T | PromiseLike<T>;
|
|
```
|