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 `CollationCaseFirst`](https://docs.rs/icu/latest/icu/collator/preferences/enum.CollationCaseFirst.html) for more information.
*/
export class CollatorCaseFirst {
static fromValue(value: CollatorCaseFirst | string): CollatorCaseFirst;
get value(): string;
get ffiValue(): number;
static Off : CollatorCaseFirst;
static Lower : CollatorCaseFirst;
static Upper : CollatorCaseFirst;
constructor(value: CollatorCaseFirst | string );
}