/** * @param {{ * value: bigint * site?: Site * } | { * number: number * site?: Site * }} args * @returns {RealLiteral} */ export function makeRealLiteral(args: { value: bigint; site?: Site; } | { number: number; site?: Site; }): RealLiteral; /** * @import { RealLiteral, Site, Token } from "../index.js" */ export const REAL_PRECISION: 6; import type { Site } from "../index.js"; import type { RealLiteral } from "../index.js"; //# sourceMappingURL=RealLiteral.d.ts.map