blob: a48c8d81ca024796dfbed073ae8f48a7bba3777b [file] [log] [blame]
// generated by diplomat-tool
import type { Decimal } from "./Decimal"
import type { FixedDecimalParseError } from "./FixedDecimalParseError"
import type { pointer, codepoint } from "./diplomat-runtime.d.ts";
/** See the [Rust documentation for `PluralOperands`](https://docs.rs/icu/latest/icu/plurals/struct.PluralOperands.html) for more information.
*/
export class PluralOperands {
get ffiValue(): pointer;
static fromString(s: string): PluralOperands;
static fromBigInt(i: bigint): PluralOperands;
static fromFixedDecimal(x: Decimal): PluralOperands;
}