(id: bigint | string)
| 44 | * @category request |
| 45 | */ |
| 46 | export const RequestId = (id: bigint | string): RequestId => |
| 47 | typeof id === "bigint" ? id as RequestId : BigInt(id) as RequestId |
| 48 | |
| 49 | /** |
| 50 | * @since 1.0.0 |
no outgoing calls
no test coverage detected