summaryrefslogtreecommitdiffstats
path: root/intl/icu_capi/js/package/lib/ICU4XLineSegmenter.d.ts
diff options
context:
space:
mode:
Diffstat (limited to 'intl/icu_capi/js/package/lib/ICU4XLineSegmenter.d.ts')
-rw-r--r--intl/icu_capi/js/package/lib/ICU4XLineSegmenter.d.ts94
1 files changed, 94 insertions, 0 deletions
diff --git a/intl/icu_capi/js/package/lib/ICU4XLineSegmenter.d.ts b/intl/icu_capi/js/package/lib/ICU4XLineSegmenter.d.ts
new file mode 100644
index 0000000000..47ae8b1891
--- /dev/null
+++ b/intl/icu_capi/js/package/lib/ICU4XLineSegmenter.d.ts
@@ -0,0 +1,94 @@
+import { FFIError } from "./diplomat-runtime"
+import { ICU4XDataProvider } from "./ICU4XDataProvider";
+import { ICU4XError } from "./ICU4XError";
+import { ICU4XLineBreakIteratorLatin1 } from "./ICU4XLineBreakIteratorLatin1";
+import { ICU4XLineBreakIteratorUtf16 } from "./ICU4XLineBreakIteratorUtf16";
+import { ICU4XLineBreakIteratorUtf8 } from "./ICU4XLineBreakIteratorUtf8";
+import { ICU4XLineBreakOptionsV1 } from "./ICU4XLineBreakOptionsV1";
+
+/**
+
+ * An ICU4X line-break segmenter, capable of finding breakpoints in strings.
+
+ * See the {@link https://docs.rs/icu/latest/icu/segmenter/struct.LineSegmenter.html Rust documentation for `LineSegmenter`} for more information.
+ */
+export class ICU4XLineSegmenter {
+
+ /**
+
+ * Construct a {@link ICU4XLineSegmenter `ICU4XLineSegmenter`} with default options. It automatically loads the best available payload data for Burmese, Khmer, Lao, and Thai.
+
+ * See the {@link https://docs.rs/icu/latest/icu/segmenter/struct.LineSegmenter.html#method.new_auto Rust documentation for `new_auto`} for more information.
+ * @throws {@link FFIError}<{@link ICU4XError}>
+ */
+ static create_auto(provider: ICU4XDataProvider): ICU4XLineSegmenter | never;
+
+ /**
+
+ * Construct a {@link ICU4XLineSegmenter `ICU4XLineSegmenter`} with default options and LSTM payload data for Burmese, Khmer, Lao, and Thai.
+
+ * See the {@link https://docs.rs/icu/latest/icu/segmenter/struct.LineSegmenter.html#method.new_lstm Rust documentation for `new_lstm`} for more information.
+ * @throws {@link FFIError}<{@link ICU4XError}>
+ */
+ static create_lstm(provider: ICU4XDataProvider): ICU4XLineSegmenter | never;
+
+ /**
+
+ * Construct a {@link ICU4XLineSegmenter `ICU4XLineSegmenter`} with default options and dictionary payload data for Burmese, Khmer, Lao, and Thai..
+
+ * See the {@link https://docs.rs/icu/latest/icu/segmenter/struct.LineSegmenter.html#method.new_dictionary Rust documentation for `new_dictionary`} for more information.
+ * @throws {@link FFIError}<{@link ICU4XError}>
+ */
+ static create_dictionary(provider: ICU4XDataProvider): ICU4XLineSegmenter | never;
+
+ /**
+
+ * Construct a {@link ICU4XLineSegmenter `ICU4XLineSegmenter`} with custom options. It automatically loads the best available payload data for Burmese, Khmer, Lao, and Thai.
+
+ * See the {@link https://docs.rs/icu/latest/icu/segmenter/struct.LineSegmenter.html#method.new_auto_with_options Rust documentation for `new_auto_with_options`} for more information.
+ * @throws {@link FFIError}<{@link ICU4XError}>
+ */
+ static create_auto_with_options_v1(provider: ICU4XDataProvider, options: ICU4XLineBreakOptionsV1): ICU4XLineSegmenter | never;
+
+ /**
+
+ * Construct a {@link ICU4XLineSegmenter `ICU4XLineSegmenter`} with custom options and LSTM payload data for Burmese, Khmer, Lao, and Thai.
+
+ * See the {@link https://docs.rs/icu/latest/icu/segmenter/struct.LineSegmenter.html#method.new_lstm_with_options Rust documentation for `new_lstm_with_options`} for more information.
+ * @throws {@link FFIError}<{@link ICU4XError}>
+ */
+ static create_lstm_with_options_v1(provider: ICU4XDataProvider, options: ICU4XLineBreakOptionsV1): ICU4XLineSegmenter | never;
+
+ /**
+
+ * Construct a {@link ICU4XLineSegmenter `ICU4XLineSegmenter`} with custom options and dictionary payload data for Burmese, Khmer, Lao, and Thai.
+
+ * See the {@link https://docs.rs/icu/latest/icu/segmenter/struct.LineSegmenter.html#method.new_dictionary_with_options Rust documentation for `new_dictionary_with_options`} for more information.
+ * @throws {@link FFIError}<{@link ICU4XError}>
+ */
+ static create_dictionary_with_options_v1(provider: ICU4XDataProvider, options: ICU4XLineBreakOptionsV1): ICU4XLineSegmenter | never;
+
+ /**
+
+ * Segments a (potentially ill-formed) UTF-8 string.
+
+ * See the {@link https://docs.rs/icu/latest/icu/segmenter/struct.LineSegmenter.html#method.segment_utf8 Rust documentation for `segment_utf8`} for more information.
+ */
+ segment_utf8(input: string): ICU4XLineBreakIteratorUtf8;
+
+ /**
+
+ * Segments a UTF-16 string.
+
+ * See the {@link https://docs.rs/icu/latest/icu/segmenter/struct.LineSegmenter.html#method.segment_utf16 Rust documentation for `segment_utf16`} for more information.
+ */
+ segment_utf16(input: Uint16Array): ICU4XLineBreakIteratorUtf16;
+
+ /**
+
+ * Segments a Latin-1 string.
+
+ * See the {@link https://docs.rs/icu/latest/icu/segmenter/struct.LineSegmenter.html#method.segment_latin1 Rust documentation for `segment_latin1`} for more information.
+ */
+ segment_latin1(input: Uint8Array): ICU4XLineBreakIteratorLatin1;
+}