mirror of
https://github.com/openai/codex.git
synced 2026-04-30 17:36:40 +00:00
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.