• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1// generated by diplomat-tool
2import type { SegmenterWordType } from "./SegmenterWordType"
3import type { pointer, codepoint } from "./diplomat-runtime.d.ts";
4
5
6/** See the [Rust documentation for `WordBreakIterator`](https://docs.rs/icu/latest/icu/segmenter/struct.WordBreakIterator.html) for more information.
7*/
8
9
10export class WordBreakIteratorLatin1 {
11
12    get ffiValue(): pointer;
13
14    next(): number;
15
16    get wordType(): SegmenterWordType;
17
18    get isWordLike(): boolean;
19}