1// generated by diplomat-tool 2import type { pointer, codepoint } from "./diplomat-runtime.d.ts"; 3 4 5/** See the [Rust documentation for `NumericOrdering`](https://docs.rs/icu/latest/icu/collator/options/enum.NumericOrdering.html) for more information. 6*/ 7 8 9export class CollatorNumericOrdering { 10 11 12 static fromValue(value : CollatorNumericOrdering | string) : CollatorNumericOrdering; 13 14 get value() : string; 15 16 get ffiValue() : number; 17 18 static Off : CollatorNumericOrdering; 19 static On : CollatorNumericOrdering; 20 21 constructor(value: CollatorNumericOrdering | string ); 22}