CollatorResolvedOptions.d.ts (977B)
1 // generated by diplomat-tool 2 import type { CollatorAlternateHandling } from "./CollatorAlternateHandling" 3 import type { CollatorCaseFirst } from "./CollatorCaseFirst" 4 import type { CollatorCaseLevel } from "./CollatorCaseLevel" 5 import type { CollatorMaxVariable } from "./CollatorMaxVariable" 6 import type { CollatorNumericOrdering } from "./CollatorNumericOrdering" 7 import type { CollatorStrength } from "./CollatorStrength" 8 import type { pointer, codepoint } from "./diplomat-runtime.d.ts"; 9 10 11 /** 12 * See the [Rust documentation for `ResolvedCollatorOptions`](https://docs.rs/icu/latest/icu/collator/options/struct.ResolvedCollatorOptions.html) for more information. 13 */ 14 15 16 export class CollatorResolvedOptions { 17 get strength(): CollatorStrength; 18 get alternateHandling(): CollatorAlternateHandling; 19 get caseFirst(): CollatorCaseFirst; 20 get maxVariable(): CollatorMaxVariable; 21 get caseLevel(): CollatorCaseLevel; 22 get numeric(): CollatorNumericOrdering; 23 24 }