19 lines
No EOL
341 B
TypeScript
19 lines
No EOL
341 B
TypeScript
|
|
/**
|
|
|
|
* 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',
|
|
} |