eslint-plugin-formatjs 6.0.10 → 6.1.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,27 @@
1
+ /**
2
+ * Auto-generated emoji version data from Unicode emoji-data.txt
3
+ * DO NOT EDIT MANUALLY - Generated by scripts/generate-emoji-data.ts
4
+ *
5
+ * Unicode Version: 17.0.0
6
+ * Ranges: 418 emoji codepoint ranges
7
+ */
8
+ export type EmojiVersion = "0.0" | "0.6" | "0.7" | "1.0" | "2.0" | "3.0" | "4.0" | "5.0" | "11.0" | "12.0" | "13.0" | "14.0" | "15.0" | "16.0" | "17.0";
9
+ export declare const EMOJI_VERSIONS: EmojiVersion[];
10
+ export interface EmojiRange {
11
+ /** Start codepoint (decimal) */
12
+ start: number;
13
+ /** End codepoint (decimal), same as start for single codepoint */
14
+ end: number;
15
+ /** Unicode emoji version */
16
+ version: EmojiVersion;
17
+ /** Description */
18
+ name: string;
19
+ }
20
+ /**
21
+ * Emoji codepoint ranges with their Unicode versions
22
+ * Total ranges: 418
23
+ *
24
+ * To check if a codepoint belongs to a version, iterate through ranges
25
+ * and check if codepoint >= start && codepoint <= end
26
+ */
27
+ export declare const EMOJI_RANGES: readonly EmojiRange[];