
/**
 * The next suffix for generating unique ids in the current thread.
 */
export const NEXT_ID: { value: number | bigint } = { value: 0 };
