blob: 9dd3f2e841ecbaa56cf696371cc3b60c026972d8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
import { ICU4XLineBreakStrictness } from "./ICU4XLineBreakStrictness";
import { ICU4XLineBreakWordOption } from "./ICU4XLineBreakWordOption";
/**
* See the {@link https://docs.rs/icu/latest/icu/segmenter/struct.LineBreakOptions.html Rust documentation for `LineBreakOptions`} for more information.
*/
export class ICU4XLineBreakOptionsV1 {
strictness: ICU4XLineBreakStrictness;
word_option: ICU4XLineBreakWordOption;
ja_zh: boolean;
}
|