• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1// generated by diplomat-tool
2import type { Decimal } from "./Decimal"
3import type { FixedDecimalParseError } from "./FixedDecimalParseError"
4import type { pointer, codepoint } from "./diplomat-runtime.d.ts";
5
6
7/** See the [Rust documentation for `PluralOperands`](https://docs.rs/icu/latest/icu/plurals/struct.PluralOperands.html) for more information.
8*/
9
10
11export class PluralOperands {
12
13    get ffiValue(): pointer;
14
15    static fromString(s: string): PluralOperands;
16
17    static fromBigInt(i: bigint): PluralOperands;
18
19    static fromFixedDecimal(x: Decimal): PluralOperands;
20}