Source code

Revision control

Copy as Markdown

Other Tools

// generated by diplomat-tool
import type { CollatorAlternateHandling } from "./CollatorAlternateHandling"
import type { CollatorCaseFirst } from "./CollatorCaseFirst"
import type { CollatorCaseLevel } from "./CollatorCaseLevel"
import type { CollatorMaxVariable } from "./CollatorMaxVariable"
import type { CollatorNumericOrdering } from "./CollatorNumericOrdering"
import type { CollatorStrength } from "./CollatorStrength"
import type { pointer, codepoint } from "./diplomat-runtime.d.ts";
/**
* See the [Rust documentation for `ResolvedCollatorOptions`](https://docs.rs/icu/latest/icu/collator/options/struct.ResolvedCollatorOptions.html) for more information.
*/
export class CollatorResolvedOptions {
get strength(): CollatorStrength;
get alternateHandling(): CollatorAlternateHandling;
get caseFirst(): CollatorCaseFirst;
get maxVariable(): CollatorMaxVariable;
get caseLevel(): CollatorCaseLevel;
get numeric(): CollatorNumericOrdering;
}