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 `YearStyle`](https://docs.rs/icu/latest/icu/datetime/options/enum.YearStyle.html) for more information.
*/
export class YearStyle {
static fromValue(value: YearStyle | string): YearStyle;
get value(): string;
get ffiValue(): number;
static Auto : YearStyle;
static Full : YearStyle;
static WithEra : YearStyle;
constructor(value: YearStyle | string );
}