Source code
Revision control
Copy as Markdown
Other Tools
// generated by diplomat-tool
import type { pointer, codepoint } from "./diplomat-runtime.d.ts";
/**
* 🚧 This API is experimental and may experience breaking changes outside major releases.
*
* See the [Rust documentation for `MissingFieldsStrategy`](https://docs.rs/icu/2.1.1/icu/calendar/options/enum.MissingFieldsStrategy.html) for more information.
*/
export class DateMissingFieldsStrategy {
/** @internal */
static fromValue(value: DateMissingFieldsStrategy | string): DateMissingFieldsStrategy;
get value(): string;
/** @internal */
get ffiValue(): number;
static Reject : DateMissingFieldsStrategy;
static Ecma : DateMissingFieldsStrategy;
constructor(value: DateMissingFieldsStrategy | string );
}