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 `MaxVariable`](https://docs.rs/icu/latest/icu/collator/options/enum.MaxVariable.html) for more information.
*/
export class CollatorMaxVariable {
static fromValue(value: CollatorMaxVariable | string): CollatorMaxVariable;
get value(): string;
get ffiValue(): number;
static Space : CollatorMaxVariable;
static Punctuation : CollatorMaxVariable;
static Symbol : CollatorMaxVariable;
static Currency : CollatorMaxVariable;
constructor(value: CollatorMaxVariable | string );
}