1 2 3 4 5 6
use crate::gleam_stdlib::result::{GleamError, GleamOk, GleamResult}; use num_bigint::BigInt; pub(super) type ParseResult = GleamResult<BigInt, ()>; pub(super) type ParseOk = GleamOk<BigInt, ()>; pub(super) type ParseError = GleamError<BigInt, ()>;