// generated by diplomat-tool import type { pointer, codepoint } from "./diplomat-runtime.d.ts"; /** * See the [Rust documentation for `LeadingAdjustment`](https://docs.rs/icu/2.1.1/icu/casemap/options/enum.LeadingAdjustment.html) for more information. */ export class LeadingAdjustment { /** @internal */ static fromValue(value: LeadingAdjustment | string): LeadingAdjustment; get value(): string; /** @internal */ get ffiValue(): number; static Auto : LeadingAdjustment; static None : LeadingAdjustment; static ToCased : LeadingAdjustment; constructor(value: LeadingAdjustment | string ); }