18 lines
698 B
TypeScript
18 lines
698 B
TypeScript
import { i32 } from "./diplomat-runtime"
|
|
|
|
/**
|
|
|
|
* See the {@link https://docs.rs/icu/latest/icu/segmenter/struct.LineBreakIterator.html Rust documentation for `LineBreakIterator`} for more information.
|
|
|
|
* Additional information: {@link https://docs.rs/icu/latest/icu/segmenter/type.LineBreakIteratorPotentiallyIllFormedUtf8.html 1}
|
|
*/
|
|
export class ICU4XLineBreakIteratorUtf8 {
|
|
|
|
/**
|
|
|
|
* Finds the next breakpoint. Returns -1 if at the end of the string or if the index is out of range of a 32-bit signed integer.
|
|
|
|
* See the {@link https://docs.rs/icu/latest/icu/segmenter/struct.LineBreakIterator.html#method.next Rust documentation for `next`} for more information.
|
|
*/
|
|
next(): i32;
|
|
}
|