blob: f92e35a751c4d563138e4bfbb779bc3db7fe0473 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
/**
* See the {@link https://docs.rs/icu/latest/icu/segmenter/enum.LineBreakStrictness.html Rust documentation for `LineBreakStrictness`} for more information.
*/
export enum ICU4XLineBreakStrictness {
/**
*/
Loose = 'Loose',
/**
*/
Normal = 'Normal',
/**
*/
Strict = 'Strict',
/**
*/
Anywhere = 'Anywhere',
}
|