Before this PR: ```typescript export type RequestId = string | bigint; ``` After: ```typescript export type RequestId = string | number; ``` `bigint` introduces headaches in TypeScript without providing any real value. |
||
|---|---|---|
| .. | ||
| src | ||
| Cargo.toml | ||
Before this PR: ```typescript export type RequestId = string | bigint; ``` After: ```typescript export type RequestId = string | number; ``` `bigint` introduces headaches in TypeScript without providing any real value. |
||
|---|---|---|
| .. | ||
| src | ||
| Cargo.toml | ||