Source code

Revision control

Copy as Markdown

Other Tools

// generated by diplomat-tool
import type { pointer, codepoint } from "./diplomat-runtime.d.ts";
/**
* See the [Rust documentation for `AlternateHandling`](https://docs.rs/icu/latest/icu/collator/options/enum.AlternateHandling.html) for more information.
*/
export class CollatorAlternateHandling {
static fromValue(value: CollatorAlternateHandling | string): CollatorAlternateHandling;
get value(): string;
get ffiValue(): number;
static NonIgnorable : CollatorAlternateHandling;
static Shifted : CollatorAlternateHandling;
constructor(value: CollatorAlternateHandling | string );
}