mirror of
https://github.com/openai/codex.git
synced 2026-05-01 01:47:18 +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.