• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1// generated by diplomat-tool
2import type { pointer, codepoint } from "./diplomat-runtime.d.ts";
3
4
5/** See the [Rust documentation for `WordType`](https://docs.rs/icu/latest/icu/segmenter/options/enum.WordType.html) for more information.
6*/
7
8
9export class SegmenterWordType {
10
11
12    static fromValue(value : SegmenterWordType | string) : SegmenterWordType;
13
14    get value() : string;
15
16    get ffiValue() : number;
17
18    static None : SegmenterWordType;
19    static Number : SegmenterWordType;
20    static Letter : SegmenterWordType;
21
22    get isWordLike(): boolean;
23
24    constructor(value: SegmenterWordType | string );
25}