1// generated by diplomat-tool 2import type { pointer, codepoint } from "./diplomat-runtime.d.ts"; 3 4 5/** See the [Rust documentation for `LeadingAdjustment`](https://docs.rs/icu/latest/icu/casemap/options/enum.LeadingAdjustment.html) for more information. 6*/ 7 8 9export class LeadingAdjustment { 10 11 12 static fromValue(value : LeadingAdjustment | string) : LeadingAdjustment; 13 14 get value() : string; 15 16 get ffiValue() : number; 17 18 static Auto : LeadingAdjustment; 19 static None : LeadingAdjustment; 20 static ToCased : LeadingAdjustment; 21 22 constructor(value: LeadingAdjustment | string ); 23}