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.
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.