// generated by diplomat-tool import type { LineBreakStrictness } from "./LineBreakStrictness" import type { LineBreakWordOption } from "./LineBreakWordOption" import type { pointer, codepoint } from "./diplomat-runtime.d.ts"; /** See the [Rust documentation for `LineBreakOptions`](https://docs.rs/icu/latest/icu/segmenter/struct.LineBreakOptions.html) for more information. */ type LineBreakOptions_Obj = { strictness: LineBreakStrictness | null; wordOption: LineBreakWordOption | null; }; export class LineBreakOptions { get strictness() : LineBreakStrictness | null; set strictness(value: LineBreakStrictness | null); get wordOption() : LineBreakWordOption | null; set wordOption(value: LineBreakWordOption | null); constructor(structObj : LineBreakOptions_Obj); }