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