summaryrefslogtreecommitdiffstats
path: root/intl/icu_capi/js/package/lib/ICU4XPluralCategory.d.ts
diff options
context:
space:
mode:
Diffstat (limited to 'intl/icu_capi/js/package/lib/ICU4XPluralCategory.d.ts')
-rw-r--r--intl/icu_capi/js/package/lib/ICU4XPluralCategory.d.ts28
1 files changed, 28 insertions, 0 deletions
diff --git a/intl/icu_capi/js/package/lib/ICU4XPluralCategory.d.ts b/intl/icu_capi/js/package/lib/ICU4XPluralCategory.d.ts
new file mode 100644
index 0000000000..7b1a9831c0
--- /dev/null
+++ b/intl/icu_capi/js/package/lib/ICU4XPluralCategory.d.ts
@@ -0,0 +1,28 @@
+import { FFIError } from "./diplomat-runtime"
+
+/**
+
+ * FFI version of `PluralCategory`.
+
+ * See the {@link https://docs.rs/icu/latest/icu/plurals/enum.PluralCategory.html Rust documentation for `PluralCategory`} for more information.
+ */
+export enum ICU4XPluralCategory {
+ /**
+ */
+ Zero = 'Zero',
+ /**
+ */
+ One = 'One',
+ /**
+ */
+ Two = 'Two',
+ /**
+ */
+ Few = 'Few',
+ /**
+ */
+ Many = 'Many',
+ /**
+ */
+ Other = 'Other',
+} \ No newline at end of file