@wordpress/i18n 6.0.0 → 6.0.1-next.46f643fa0.0

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.
Files changed (39) hide show
  1. package/README.md +20 -19
  2. package/build/create-i18n.js +60 -205
  3. package/build/create-i18n.js.map +1 -1
  4. package/build/default-i18n.js +31 -34
  5. package/build/default-i18n.js.map +1 -1
  6. package/build/index.js.map +1 -1
  7. package/build/sprintf.js +3 -4
  8. package/build/sprintf.js.map +1 -1
  9. package/build/types.js.map +1 -1
  10. package/build-module/create-i18n.js +60 -205
  11. package/build-module/create-i18n.js.map +1 -1
  12. package/build-module/default-i18n.js +31 -35
  13. package/build-module/default-i18n.js.map +1 -1
  14. package/build-module/index.js.map +1 -1
  15. package/build-module/sprintf.js +3 -4
  16. package/build-module/sprintf.js.map +1 -1
  17. package/build-module/types.js.map +1 -1
  18. package/build-types/create-i18n.d.ts +11 -115
  19. package/build-types/create-i18n.d.ts.map +1 -1
  20. package/build-types/default-i18n.d.ts +45 -47
  21. package/build-types/default-i18n.d.ts.map +1 -1
  22. package/build-types/index.d.ts +4 -3
  23. package/build-types/index.d.ts.map +1 -1
  24. package/build-types/sprintf.d.ts +1 -4
  25. package/build-types/sprintf.d.ts.map +1 -1
  26. package/build-types/types.d.ts +101 -0
  27. package/build-types/types.d.ts.map +1 -1
  28. package/package.json +3 -3
  29. package/src/create-i18n.ts +405 -0
  30. package/src/{default-i18n.js → default-i18n.ts} +37 -35
  31. package/src/index.ts +16 -0
  32. package/src/sprintf.ts +4 -10
  33. package/src/test/{create-i18n.js → create-i18n.ts} +63 -30
  34. package/src/test/{sprintf.js → sprintf.ts} +5 -1
  35. package/src/test/{subscribe-i18n.js → subscribe-i18n.ts} +3 -3
  36. package/src/types.ts +155 -0
  37. package/tsconfig.tsbuildinfo +1 -1
  38. package/src/create-i18n.js +0 -514
  39. /package/src/test/{default-i18n.js → default-i18n.ts} +0 -0
@@ -9,16 +9,19 @@ import { createHooks } from '@wordpress/hooks';
9
9
  * Internal dependencies
10
10
  */
11
11
  import { createI18n } from '..';
12
+ import type { I18nDomainMetadata, LocaleData } from '../types';
12
13
 
13
- const strayaLocale = {
14
- hello: [ 'gday' ],
14
+ type AllowedTextDomain = 'test_domain' | 'test_domain2';
15
+
16
+ const strayaLocale: LocaleData = {
17
+ hello: [ 'gday', '' ],
15
18
  };
16
19
 
17
- const frenchLocale = {
18
- hello: [ 'bonjour' ],
20
+ const frenchLocale: LocaleData = {
21
+ hello: [ 'bonjour', '' ],
19
22
  };
20
23
 
21
- const localeData = {
24
+ const localeData: LocaleData< AllowedTextDomain > = {
22
25
  '': {
23
26
  // Domain name.
24
27
  domain: 'test_domain',
@@ -27,23 +30,24 @@ const localeData = {
27
30
  plural_forms: 'nplurals=2; plural=(n != 1);',
28
31
  },
29
32
 
30
- hello: [ 'bonjour' ],
33
+ hello: [ 'bonjour', '' ],
31
34
 
32
- 'verb\u0004feed': [ 'nourrir' ],
35
+ 'verb\u0004feed': [ 'nourrir', '' ],
33
36
 
34
- 'hello %s': [ 'bonjour %s' ],
37
+ 'hello %s': [ 'bonjour %s', '' ],
35
38
 
36
39
  '%d banana': [ '%d banane', '%d bananes' ],
37
40
 
38
41
  'fruit\u0004%d apple': [ '%d pomme', '%d pommes' ],
39
42
  };
40
43
 
41
- const additionalLocaleData = {
42
- cheeseburger: [ 'hamburger au fromage' ],
44
+ const additionalLocaleData: LocaleData< AllowedTextDomain > = {
45
+ cheeseburger: [ 'hamburger au fromage', '' ],
43
46
  '%d cat': [ '%d chat', '%d chats' ],
44
47
  };
45
48
 
46
- const createTestLocale = () => createI18n( localeData, 'test_domain' );
49
+ const createTestLocale = () =>
50
+ createI18n< AllowedTextDomain >( localeData, 'test_domain' );
47
51
 
48
52
  describe( 'createI18n', () => {
49
53
  test( 'instantiated with locale data', () => {
@@ -111,15 +115,14 @@ describe( 'createI18n', () => {
111
115
  } );
112
116
 
113
117
  describe( 'isRTL', () => {
114
- const ARLocaleData = {
118
+ const ARLocaleData: LocaleData = {
115
119
  '': {
116
120
  plural_forms:
117
121
  'nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;',
118
- language: 'ar',
119
- localeSlug: 'ar',
122
+ lang: 'ar',
120
123
  },
121
- 'text direction\u0004ltr': [ 'rtl' ],
122
- Back: [ 'رجوع' ],
124
+ 'text direction\u0004ltr': [ 'rtl', '' ],
125
+ Back: [ 'رجوع', '' ],
123
126
  };
124
127
 
125
128
  it( 'is false for non-rtl', () => {
@@ -135,7 +138,10 @@ describe( 'createI18n', () => {
135
138
 
136
139
  describe( 'setLocaleData', () => {
137
140
  const createTestLocaleWithAdditionalData = () => {
138
- const locale = createI18n( localeData, 'test_domain' );
141
+ const locale = createI18n< 'test_domain' | 'test_domain2' >(
142
+ localeData,
143
+ 'test_domain'
144
+ );
139
145
  locale.setLocaleData( additionalLocaleData, 'test_domain' );
140
146
  return locale;
141
147
  };
@@ -153,6 +159,7 @@ describe( 'createI18n', () => {
153
159
  },
154
160
  'test_domain2'
155
161
  );
162
+
156
163
  expect(
157
164
  locale._n( '%d banana', '%d bananes', 2, 'test_domain2' )
158
165
  ).toBe( '%d bananes' );
@@ -171,13 +178,22 @@ describe( 'createI18n', () => {
171
178
  domain
172
179
  );
173
180
 
181
+ const domainMeta = locale.getLocaleData( domain )[ '' ];
174
182
  expect(
175
- locale.getLocaleData( domain )[ '' ].domain
183
+ typeof domainMeta === 'object' && ! Array.isArray( domainMeta )
184
+ ? domainMeta.domain
185
+ : undefined
176
186
  ).toBeUndefined();
177
- expect( locale.getLocaleData( domain )[ '' ].lang ).toBeUndefined();
178
- expect( locale.getLocaleData( domain )[ '' ].additionalData ).toBe(
179
- domainConfiguration.additionalData
180
- );
187
+ expect(
188
+ typeof domainMeta === 'object' && ! Array.isArray( domainMeta )
189
+ ? domainMeta.lang
190
+ : undefined
191
+ ).toBeUndefined();
192
+ expect(
193
+ typeof domainMeta === 'object' && ! Array.isArray( domainMeta )
194
+ ? domainMeta.additionalData
195
+ : undefined
196
+ ).toBe( domainConfiguration.additionalData );
181
197
  } );
182
198
 
183
199
  describe( '__', () => {
@@ -220,7 +236,10 @@ describe( 'createI18n', () => {
220
236
 
221
237
  describe( 'addLocaleData', () => {
222
238
  const createTestLocaleWithAdditionalData = () => {
223
- const locale = createI18n( localeData, 'test_domain' );
239
+ const locale = createI18n< 'test_domain' | 'test_domain2' >(
240
+ localeData,
241
+ 'test_domain'
242
+ );
224
243
  locale.addLocaleData( additionalLocaleData, 'test_domain' );
225
244
  return locale;
226
245
  };
@@ -256,13 +275,27 @@ describe( 'createI18n', () => {
256
275
  domain
257
276
  );
258
277
 
259
- expect( locale.getLocaleData( domain )[ '' ].domain ).toBe(
260
- domain
261
- );
262
- expect( locale.getLocaleData( domain )[ '' ].lang ).toBe( 'fr' );
263
- expect( locale.getLocaleData( domain )[ '' ].additionalData ).toBe(
264
- domainConfiguration.additionalData
265
- );
278
+ expect(
279
+ (
280
+ locale.getLocaleData( domain )[
281
+ ''
282
+ ] as I18nDomainMetadata< 'test_domain' >
283
+ ).domain
284
+ ).toBe( domain );
285
+ expect(
286
+ (
287
+ locale.getLocaleData( domain )[
288
+ ''
289
+ ] as I18nDomainMetadata< 'test_domain' >
290
+ ).lang
291
+ ).toBe( 'fr' );
292
+ expect(
293
+ (
294
+ locale.getLocaleData( domain )[
295
+ ''
296
+ ] as I18nDomainMetadata< 'test_domain' >
297
+ ).additionalData
298
+ ).toBe( domainConfiguration.additionalData );
266
299
  } );
267
300
 
268
301
  describe( '__', () => {
@@ -1,6 +1,10 @@
1
1
  // Mock memoization as identity function. Inline since Jest errors on
2
2
  // out-of-scope references in a mock callback.
3
- jest.mock( 'memize', () => ( fn ) => fn );
3
+ interface MemizeMock {
4
+ < T extends ( ...args: any[] ) => any >( fn: T ): T;
5
+ }
6
+
7
+ jest.mock( 'memize', (): MemizeMock => ( fn ) => fn );
4
8
 
5
9
  /**
6
10
  * Internal dependencies
@@ -13,7 +13,7 @@ describe( 'i18n updates', () => {
13
13
  const hooks = createHooks();
14
14
  const i18n = createI18n( undefined, undefined, hooks );
15
15
 
16
- const doneTranslations = [];
16
+ const doneTranslations: string[] = [];
17
17
 
18
18
  function doTranslation() {
19
19
  doneTranslations.push( i18n.__( 'original' ) );
@@ -30,9 +30,9 @@ describe( 'i18n updates', () => {
30
30
  } );
31
31
 
32
32
  // Add a filter and then remove it.
33
- const filter = ( text ) => '[' + text + ']';
33
+ const filter = ( text: string ) => `[${ text }]`;
34
34
  hooks.addFilter( 'i18n.gettext', 'test', filter );
35
- hooks.removeFilter( 'i18n.gettext', 'test', filter );
35
+ hooks.removeFilter( 'i18n.gettext', 'test' );
36
36
 
37
37
  expect( doneTranslations ).toEqual( [
38
38
  'original', // No translations before setLocaleData.
package/src/types.ts CHANGED
@@ -1,3 +1,9 @@
1
+ /**
2
+ * External dependencies
3
+ */
4
+ import type sprintf from '@tannin/sprintf';
5
+ import { type TanninDomainMetadata } from 'tannin';
6
+
1
7
  /**
2
8
  * Return type for string translation functions.
3
9
  *
@@ -10,3 +16,152 @@ export type TranslatableText< T extends string > = string & {
10
16
  */
11
17
  readonly __translatableText: T;
12
18
  };
19
+
20
+ /**
21
+ * Type to extends TanninDomainMetadata to support additional properties.
22
+ */
23
+ export type I18nDomainMetadata< TextDomain extends string > =
24
+ TanninDomainMetadata & {
25
+ domain?: TextDomain;
26
+ [ key: string ]: unknown;
27
+ };
28
+
29
+ /**
30
+ * Locale data is a record of domain names to their metadata or translations.
31
+ */
32
+ export type LocaleData< TextDomain extends string = string > = Record<
33
+ string,
34
+ I18nDomainMetadata< TextDomain > | string[]
35
+ >;
36
+
37
+ export type SubscribeCallback = () => void;
38
+ export type UnsubscribeCallback = () => void;
39
+
40
+ /**
41
+ * Retrieve the domain to use when calling domain-specific filters.
42
+ */
43
+ export type getFilterDomain = ( domain?: string ) => string;
44
+
45
+ /**
46
+ * An i18n instance
47
+ */
48
+ export interface I18n< TextDomain extends string = string > {
49
+ /**
50
+ * Returns locale data by domain in a
51
+ * Jed-formatted JSON object shape.
52
+ *
53
+ * @see http://messageformat.github.io/Jed/
54
+ */
55
+ getLocaleData: ( domain?: TextDomain ) => LocaleData< TextDomain >;
56
+
57
+ /**
58
+ * Merges locale data into the Tannin instance by domain. Note that this
59
+ * function will overwrite the domain configuration. Accepts data in a
60
+ * Jed-formatted JSON object shape.
61
+ *
62
+ * @see http://messageformat.github.io/Jed/
63
+ */
64
+ setLocaleData: (
65
+ data?: LocaleData< TextDomain >,
66
+ domain?: TextDomain
67
+ ) => void;
68
+
69
+ /**
70
+ * Merges locale data into the Tannin instance by domain. Note that this
71
+ * function will also merge the domain configuration. Accepts data in a
72
+ * Jed-formatted JSON object shape.
73
+ *
74
+ * @see http://messageformat.github.io/Jed/
75
+ */
76
+ addLocaleData: (
77
+ data?: LocaleData< TextDomain >,
78
+ domain?: TextDomain
79
+ ) => void;
80
+
81
+ /**
82
+ * Resets all current Tannin instance locale data and sets the specified
83
+ * locale data for the domain. Accepts data in a Jed-formatted JSON object shape.
84
+ *
85
+ * @see http://messageformat.github.io/Jed/
86
+ */
87
+ resetLocaleData: (
88
+ data?: LocaleData< TextDomain >,
89
+ domain?: TextDomain
90
+ ) => void;
91
+
92
+ /**
93
+ * Subscribes to changes of locale data
94
+ */
95
+ subscribe: ( callback: SubscribeCallback ) => UnsubscribeCallback;
96
+
97
+ /**
98
+ * Retrieve the translation of text.
99
+ *
100
+ * @see https://developer.wordpress.org/reference/functions/__/
101
+ */
102
+ __: < Text extends string >(
103
+ text: Text,
104
+ domain?: TextDomain
105
+ ) => TranslatableText< Text >;
106
+
107
+ /**
108
+ * Retrieve translated string with gettext context.
109
+ *
110
+ * @see https://developer.wordpress.org/reference/functions/_x/
111
+ */
112
+ _x: < Text extends string >(
113
+ text: Text,
114
+ context: string,
115
+ domain?: TextDomain
116
+ ) => TranslatableText< Text >;
117
+
118
+ /**
119
+ * Translates and retrieves the singular or plural form based on the supplied
120
+ * number.
121
+ *
122
+ * @see https://developer.wordpress.org/reference/functions/_n/
123
+ */
124
+ _n: < Single extends string, Plural extends string >(
125
+ single: Single,
126
+ plural: Plural,
127
+ number: number,
128
+ domain?: TextDomain
129
+ ) => TranslatableText< Single | Plural >;
130
+
131
+ /**
132
+ * Translates and retrieves the singular or plural form based on the supplied
133
+ * number, with gettext context.
134
+ *
135
+ * @see https://developer.wordpress.org/reference/functions/_nx/
136
+ */
137
+ _nx: < Single extends string, Plural extends string >(
138
+ single: Single,
139
+ plural: Plural,
140
+ number: number,
141
+ context: string,
142
+ domain?: TextDomain
143
+ ) => TranslatableText< Single | Plural >;
144
+
145
+ /**
146
+ * Check if current locale is RTL.
147
+ *
148
+ * **RTL (Right To Left)** is a locale property indicating that text is written from right to left.
149
+ * For example, the `he` locale (for Hebrew) specifies right-to-left. Arabic (ar) is another common
150
+ * language written RTL. The opposite of RTL, LTR (Left To Right) is used in other languages,
151
+ * including English (`en`, `en-US`, `en-GB`, etc.), Spanish (`es`), and French (`fr`).
152
+ */
153
+ isRTL: () => boolean;
154
+
155
+ /**
156
+ * Check if there is a translation for a given string in singular form.
157
+ */
158
+ hasTranslation: (
159
+ single: string,
160
+ context?: string,
161
+ domain?: TextDomain
162
+ ) => boolean;
163
+ }
164
+
165
+ export type DistributeSprintfArgs< T extends string > = T extends any
166
+ ? Parameters< typeof sprintf< T > >[ 1 ]
167
+ : never;
@@ -1 +1 @@
1
- {"fileNames":["../../node_modules/typescript/lib/lib.es5.d.ts","../../node_modules/typescript/lib/lib.es2015.d.ts","../../node_modules/typescript/lib/lib.es2016.d.ts","../../node_modules/typescript/lib/lib.es2017.d.ts","../../node_modules/typescript/lib/lib.es2018.d.ts","../../node_modules/typescript/lib/lib.es2019.d.ts","../../node_modules/typescript/lib/lib.es2020.d.ts","../../node_modules/typescript/lib/lib.es2021.d.ts","../../node_modules/typescript/lib/lib.es2022.d.ts","../../node_modules/typescript/lib/lib.es2023.d.ts","../../node_modules/typescript/lib/lib.es2024.d.ts","../../node_modules/typescript/lib/lib.esnext.d.ts","../../node_modules/typescript/lib/lib.dom.d.ts","../../node_modules/typescript/lib/lib.dom.iterable.d.ts","../../node_modules/typescript/lib/lib.es2015.core.d.ts","../../node_modules/typescript/lib/lib.es2015.collection.d.ts","../../node_modules/typescript/lib/lib.es2015.generator.d.ts","../../node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../node_modules/typescript/lib/lib.es2015.promise.d.ts","../../node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../node_modules/typescript/lib/lib.es2016.intl.d.ts","../../node_modules/typescript/lib/lib.es2017.arraybuffer.d.ts","../../node_modules/typescript/lib/lib.es2017.date.d.ts","../../node_modules/typescript/lib/lib.es2017.object.d.ts","../../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../node_modules/typescript/lib/lib.es2017.string.d.ts","../../node_modules/typescript/lib/lib.es2017.intl.d.ts","../../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../node_modules/typescript/lib/lib.es2018.intl.d.ts","../../node_modules/typescript/lib/lib.es2018.promise.d.ts","../../node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../node_modules/typescript/lib/lib.es2019.array.d.ts","../../node_modules/typescript/lib/lib.es2019.object.d.ts","../../node_modules/typescript/lib/lib.es2019.string.d.ts","../../node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../node_modules/typescript/lib/lib.es2019.intl.d.ts","../../node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../node_modules/typescript/lib/lib.es2020.date.d.ts","../../node_modules/typescript/lib/lib.es2020.promise.d.ts","../../node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../node_modules/typescript/lib/lib.es2020.string.d.ts","../../node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../node_modules/typescript/lib/lib.es2020.intl.d.ts","../../node_modules/typescript/lib/lib.es2020.number.d.ts","../../node_modules/typescript/lib/lib.es2021.promise.d.ts","../../node_modules/typescript/lib/lib.es2021.string.d.ts","../../node_modules/typescript/lib/lib.es2021.weakref.d.ts","../../node_modules/typescript/lib/lib.es2021.intl.d.ts","../../node_modules/typescript/lib/lib.es2022.array.d.ts","../../node_modules/typescript/lib/lib.es2022.error.d.ts","../../node_modules/typescript/lib/lib.es2022.intl.d.ts","../../node_modules/typescript/lib/lib.es2022.object.d.ts","../../node_modules/typescript/lib/lib.es2022.string.d.ts","../../node_modules/typescript/lib/lib.es2022.regexp.d.ts","../../node_modules/typescript/lib/lib.es2023.array.d.ts","../../node_modules/typescript/lib/lib.es2023.collection.d.ts","../../node_modules/typescript/lib/lib.es2023.intl.d.ts","../../node_modules/typescript/lib/lib.es2024.arraybuffer.d.ts","../../node_modules/typescript/lib/lib.es2024.collection.d.ts","../../node_modules/typescript/lib/lib.es2024.object.d.ts","../../node_modules/typescript/lib/lib.es2024.promise.d.ts","../../node_modules/typescript/lib/lib.es2024.regexp.d.ts","../../node_modules/typescript/lib/lib.es2024.sharedmemory.d.ts","../../node_modules/typescript/lib/lib.es2024.string.d.ts","../../node_modules/typescript/lib/lib.esnext.array.d.ts","../../node_modules/typescript/lib/lib.esnext.collection.d.ts","../../node_modules/typescript/lib/lib.esnext.intl.d.ts","../../node_modules/typescript/lib/lib.esnext.disposable.d.ts","../../node_modules/typescript/lib/lib.esnext.decorators.d.ts","../../node_modules/typescript/lib/lib.esnext.iterator.d.ts","../../node_modules/typescript/lib/lib.decorators.d.ts","../../node_modules/typescript/lib/lib.decorators.legacy.d.ts","../../node_modules/tannin/index.d.ts","./src/types.ts","../hooks/build-types/createAddHook.d.ts","../hooks/build-types/types.d.ts","../hooks/build-types/createRemoveHook.d.ts","../hooks/build-types/createHasHook.d.ts","../hooks/build-types/createRunHook.d.ts","../hooks/build-types/createCurrentHook.d.ts","../hooks/build-types/createDoingHook.d.ts","../hooks/build-types/createDidHook.d.ts","../hooks/build-types/createHooks.d.ts","../hooks/build-types/index.d.ts","./src/create-i18n.js","./src/default-i18n.js","../../node_modules/@tannin/sprintf/types/index.d.ts","../../node_modules/@tannin/sprintf/src/index.d.ts","./src/sprintf.ts","./src/index.js"],"fileIdsList":[[93],[90],[82],[81,82,83,84,85,86,87,88],[81,82,83,84,85,87,88,89],[89],[79,80,90],[80,90,91],[91,92,95],[80,93,94]],"fileInfos":[{"version":"e41c290ef7dd7dab3493e6cbe5909e0148edf4a8dad0271be08edec368a0f7b9","affectsGlobalScope":true,"impliedFormat":1},{"version":"45b7ab580deca34ae9729e97c13cfd999df04416a79116c3bfb483804f85ded4","impliedFormat":1},{"version":"3facaf05f0c5fc569c5649dd359892c98a85557e3e0c847964caeb67076f4d75","impliedFormat":1},{"version":"e44bb8bbac7f10ecc786703fe0a6a4b952189f908707980ba8f3c8975a760962","impliedFormat":1},{"version":"5e1c4c362065a6b95ff952c0eab010f04dcd2c3494e813b493ecfd4fcb9fc0d8","impliedFormat":1},{"version":"68d73b4a11549f9c0b7d352d10e91e5dca8faa3322bfb77b661839c42b1ddec7","impliedFormat":1},{"version":"5efce4fc3c29ea84e8928f97adec086e3dc876365e0982cc8479a07954a3efd4","impliedFormat":1},{"version":"feecb1be483ed332fad555aff858affd90a48ab19ba7272ee084704eb7167569","impliedFormat":1},{"version":"ee7bad0c15b58988daa84371e0b89d313b762ab83cb5b31b8a2d1162e8eb41c2","impliedFormat":1},{"version":"27bdc30a0e32783366a5abeda841bc22757c1797de8681bbe81fbc735eeb1c10","impliedFormat":1},{"version":"8fd575e12870e9944c7e1d62e1f5a73fcf23dd8d3a321f2a2c74c20d022283fe","impliedFormat":1},{"version":"e12a46ce14b817d4c9e6b2b478956452330bf00c9801b79de46f7a1815b5bd40","impliedFormat":1},{"version":"4fd3f3422b2d2a3dfd5cdd0f387b3a8ec45f006c6ea896a4cb41264c2100bb2c","affectsGlobalScope":true,"impliedFormat":1},{"version":"69e65d976bf166ce4a9e6f6c18f94d2424bf116e90837ace179610dbccad9b42","affectsGlobalScope":true,"impliedFormat":1},{"version":"c57796738e7f83dbc4b8e65132f11a377649c00dd3eee333f672b8f0a6bea671","affectsGlobalScope":true,"impliedFormat":1},{"version":"dc2df20b1bcdc8c2d34af4926e2c3ab15ffe1160a63e58b7e09833f616efff44","affectsGlobalScope":true,"impliedFormat":1},{"version":"515d0b7b9bea2e31ea4ec968e9edd2c39d3eebf4a2d5cbd04e88639819ae3b71","affectsGlobalScope":true,"impliedFormat":1},{"version":"62bb211266ee48b2d0edf0d8d1b191f0c24fc379a82bd4c1692a082c540bc6b1","affectsGlobalScope":true,"impliedFormat":1},{"version":"0dc1e7ceda9b8b9b455c3a2d67b0412feab00bd2f66656cd8850e8831b08b537","affectsGlobalScope":true,"impliedFormat":1},{"version":"ce691fb9e5c64efb9547083e4a34091bcbe5bdb41027e310ebba8f7d96a98671","affectsGlobalScope":true,"impliedFormat":1},{"version":"8d697a2a929a5fcb38b7a65594020fcef05ec1630804a33748829c5ff53640d0","affectsGlobalScope":true,"impliedFormat":1},{"version":"4ff2a353abf8a80ee399af572debb8faab2d33ad38c4b4474cff7f26e7653b8d","affectsGlobalScope":true,"impliedFormat":1},{"version":"936e80ad36a2ee83fc3caf008e7c4c5afe45b3cf3d5c24408f039c1d47bdc1df","affectsGlobalScope":true,"impliedFormat":1},{"version":"d15bea3d62cbbdb9797079416b8ac375ae99162a7fba5de2c6c505446486ac0a","affectsGlobalScope":true,"impliedFormat":1},{"version":"68d18b664c9d32a7336a70235958b8997ebc1c3b8505f4f1ae2b7e7753b87618","affectsGlobalScope":true,"impliedFormat":1},{"version":"eb3d66c8327153d8fa7dd03f9c58d351107fe824c79e9b56b462935176cdf12a","affectsGlobalScope":true,"impliedFormat":1},{"version":"38f0219c9e23c915ef9790ab1d680440d95419ad264816fa15009a8851e79119","affectsGlobalScope":true,"impliedFormat":1},{"version":"69ab18c3b76cd9b1be3d188eaf8bba06112ebbe2f47f6c322b5105a6fbc45a2e","affectsGlobalScope":true,"impliedFormat":1},{"version":"fef8cfad2e2dc5f5b3d97a6f4f2e92848eb1b88e897bb7318cef0e2820bceaab","affectsGlobalScope":true,"impliedFormat":1},{"version":"2f11ff796926e0832f9ae148008138ad583bd181899ab7dd768a2666700b1893","affectsGlobalScope":true,"impliedFormat":1},{"version":"4de680d5bb41c17f7f68e0419412ca23c98d5749dcaaea1896172f06435891fc","affectsGlobalScope":true,"impliedFormat":1},{"version":"954296b30da6d508a104a3a0b5d96b76495c709785c1d11610908e63481ee667","affectsGlobalScope":true,"impliedFormat":1},{"version":"ac9538681b19688c8eae65811b329d3744af679e0bdfa5d842d0e32524c73e1c","affectsGlobalScope":true,"impliedFormat":1},{"version":"0a969edff4bd52585473d24995c5ef223f6652d6ef46193309b3921d65dd4376","affectsGlobalScope":true,"impliedFormat":1},{"version":"9e9fbd7030c440b33d021da145d3232984c8bb7916f277e8ffd3dc2e3eae2bdb","affectsGlobalScope":true,"impliedFormat":1},{"version":"811ec78f7fefcabbda4bfa93b3eb67d9ae166ef95f9bff989d964061cbf81a0c","affectsGlobalScope":true,"impliedFormat":1},{"version":"717937616a17072082152a2ef351cb51f98802fb4b2fdabd32399843875974ca","affectsGlobalScope":true,"impliedFormat":1},{"version":"d7e7d9b7b50e5f22c915b525acc5a49a7a6584cf8f62d0569e557c5cfc4b2ac2","affectsGlobalScope":true,"impliedFormat":1},{"version":"71c37f4c9543f31dfced6c7840e068c5a5aacb7b89111a4364b1d5276b852557","affectsGlobalScope":true,"impliedFormat":1},{"version":"576711e016cf4f1804676043e6a0a5414252560eb57de9faceee34d79798c850","affectsGlobalScope":true,"impliedFormat":1},{"version":"89c1b1281ba7b8a96efc676b11b264de7a8374c5ea1e6617f11880a13fc56dc6","affectsGlobalScope":true,"impliedFormat":1},{"version":"74f7fa2d027d5b33eb0471c8e82a6c87216223181ec31247c357a3e8e2fddc5b","affectsGlobalScope":true,"impliedFormat":1},{"version":"f1e2a172204962276504466a6393426d2ca9c54894b1ad0a6c9dad867a65f876","affectsGlobalScope":true,"impliedFormat":1},{"version":"063600664504610fe3e99b717a1223f8b1900087fab0b4cad1496a114744f8df","affectsGlobalScope":true,"impliedFormat":1},{"version":"934019d7e3c81950f9a8426d093458b65d5aff2c7c1511233c0fd5b941e608ab","affectsGlobalScope":true,"impliedFormat":1},{"version":"52ada8e0b6e0482b728070b7639ee42e83a9b1c22d205992756fe020fd9f4a47","affectsGlobalScope":true,"impliedFormat":1},{"version":"3bdefe1bfd4d6dee0e26f928f93ccc128f1b64d5d501ff4a8cf3c6371200e5e6","affectsGlobalScope":true,"impliedFormat":1},{"version":"59fb2c069260b4ba00b5643b907ef5d5341b167e7d1dbf58dfd895658bda2867","affectsGlobalScope":true,"impliedFormat":1},{"version":"639e512c0dfc3fad96a84caad71b8834d66329a1f28dc95e3946c9b58176c73a","affectsGlobalScope":true,"impliedFormat":1},{"version":"368af93f74c9c932edd84c58883e736c9e3d53cec1fe24c0b0ff451f529ceab1","affectsGlobalScope":true,"impliedFormat":1},{"version":"af3dd424cf267428f30ccfc376f47a2c0114546b55c44d8c0f1d57d841e28d74","affectsGlobalScope":true,"impliedFormat":1},{"version":"995c005ab91a498455ea8dfb63aa9f83fa2ea793c3d8aa344be4a1678d06d399","affectsGlobalScope":true,"impliedFormat":1},{"version":"959d36cddf5e7d572a65045b876f2956c973a586da58e5d26cde519184fd9b8a","affectsGlobalScope":true,"impliedFormat":1},{"version":"965f36eae237dd74e6cca203a43e9ca801ce38824ead814728a2807b1910117d","affectsGlobalScope":true,"impliedFormat":1},{"version":"3925a6c820dcb1a06506c90b1577db1fdbf7705d65b62b99dce4be75c637e26b","affectsGlobalScope":true,"impliedFormat":1},{"version":"0a3d63ef2b853447ec4f749d3f368ce642264246e02911fcb1590d8c161b8005","affectsGlobalScope":true,"impliedFormat":1},{"version":"b5ce7a470bc3628408429040c4e3a53a27755022a32fd05e2cb694e7015386c7","affectsGlobalScope":true,"impliedFormat":1},{"version":"8444af78980e3b20b49324f4a16ba35024fef3ee069a0eb67616ea6ca821c47a","affectsGlobalScope":true,"impliedFormat":1},{"version":"3287d9d085fbd618c3971944b65b4be57859f5415f495b33a6adc994edd2f004","affectsGlobalScope":true,"impliedFormat":1},{"version":"b4b67b1a91182421f5df999988c690f14d813b9850b40acd06ed44691f6727ad","affectsGlobalScope":true,"impliedFormat":1},{"version":"bab26767638ab3557de12c900f0b91f710c7dc40ee9793d5a27d32c04f0bf646","affectsGlobalScope":true,"impliedFormat":1},{"version":"436aaf437562f276ec2ddbee2f2cdedac7664c1e4c1d2c36839ddd582eeb3d0a","affectsGlobalScope":true,"impliedFormat":1},{"version":"8e3c06ea092138bf9fa5e874a1fdbc9d54805d074bee1de31b99a11e2fec239d","affectsGlobalScope":true,"impliedFormat":1},{"version":"87dc0f382502f5bbce5129bdc0aea21e19a3abbc19259e0b43ae038a9fc4e326","affectsGlobalScope":true,"impliedFormat":1},{"version":"b1cb28af0c891c8c96b2d6b7be76bd394fddcfdb4709a20ba05a7c1605eea0f9","affectsGlobalScope":true,"impliedFormat":1},{"version":"2fef54945a13095fdb9b84f705f2b5994597640c46afeb2ce78352fab4cb3279","affectsGlobalScope":true,"impliedFormat":1},{"version":"ac77cb3e8c6d3565793eb90a8373ee8033146315a3dbead3bde8db5eaf5e5ec6","affectsGlobalScope":true,"impliedFormat":1},{"version":"56e4ed5aab5f5920980066a9409bfaf53e6d21d3f8d020c17e4de584d29600ad","affectsGlobalScope":true,"impliedFormat":1},{"version":"4ece9f17b3866cc077099c73f4983bddbcb1dc7ddb943227f1ec070f529dedd1","affectsGlobalScope":true,"impliedFormat":1},{"version":"0a6282c8827e4b9a95f4bf4f5c205673ada31b982f50572d27103df8ceb8013c","affectsGlobalScope":true,"impliedFormat":1},{"version":"1c9319a09485199c1f7b0498f2988d6d2249793ef67edda49d1e584746be9032","affectsGlobalScope":true,"impliedFormat":1},{"version":"e3a2a0cee0f03ffdde24d89660eba2685bfbdeae955a6c67e8c4c9fd28928eeb","affectsGlobalScope":true,"impliedFormat":1},{"version":"811c71eee4aa0ac5f7adf713323a5c41b0cf6c4e17367a34fbce379e12bbf0a4","affectsGlobalScope":true,"impliedFormat":1},{"version":"51ad4c928303041605b4d7ae32e0c1ee387d43a24cd6f1ebf4a2699e1076d4fa","affectsGlobalScope":true,"impliedFormat":1},{"version":"d4b1d2c51d058fc21ec2629fff7a76249dec2e36e12960ea056e3ef89174080f","affectsGlobalScope":true,"impliedFormat":1},{"version":"61d6a2092f48af66dbfb220e31eea8b10bc02b6932d6e529005fd2d7b3281290","affectsGlobalScope":true,"impliedFormat":1},{"version":"8e7f8264d0fb4c5339605a15daadb037bf238c10b654bb3eee14208f860a32ea","affectsGlobalScope":true,"impliedFormat":1},{"version":"782dec38049b92d4e85c1585fbea5474a219c6984a35b004963b00beb1aab538","affectsGlobalScope":true,"impliedFormat":1},{"version":"0d1179b6e77f3c31405e0c31f52f13bc4270555bdd3157f0bc855d5e7fe2c4cf","impliedFormat":1},{"version":"d9681875ae8e910e615d6482251f4162bd130edf5dd87c9bcddd23eebf05aa7b","signature":"9197a8505ddb5a2c4b9fb9b0d761d36257781df19f7e388deb1db41f3d1e0578"},"e89c5f3e57750498ecc0904025a5faaa2067a54ce82dac6ba2b8cf0cfd41ccc2","09fe1d225f4a83f48ea5f67f1be80f6e674280a4f8c38d0ebd649862237066bb","4ad429086c5d55543eb1146b31a2de27e54ad772d1626d19b80502b3fff43b84","6b089383aa85af6dd1619a6fb9468a1eec60c2ce83be3f4fc691a323275860c4","cdbced29135877ea367650ee1c49c482a46cbbd0befdbfb730e8780d5982aa41","5461443f907ddbae5a8b8cd9a32ac614e396bf505acd4b09245d4ec0b1dbebd2","26a0c627921511b17209aa6e90510e25a424b8cb1b08ac74d29d98bfb35e1959","6508e23a7d089883b385ab273c9ae40301e953e987c4363bdbc6f788b88ff9ce","ee1a1f6f69c6e3f7cdb0fd5a920d72cd9c2e69229919ad0d7b590dda51348bca","d150550f9f93d9b865bdba497dfee108bfc0af237d186fb173af51a0646e3643",{"version":"b6b8c589fcc7dba81b22d18847bb6b6698c7a9211f9cd97a59b006682bc59ff2","signature":"6a49af70d4d5994a5d362bf686a4d494d7522b403ae9529aece06ebd449e4354"},{"version":"0accad721eed27363a8e6c1119fe9f2c16aa0bfb3819b076117836092f8fab28","signature":"da17cc359a905fd575708750537f635f44ad92d8ae14116b3a54fb78d37c55b5"},{"version":"c709147f2a650b942c69f42c341f0456922911e8ee0b63eba1d46ed7c24d82bf","impliedFormat":99},{"version":"7c8f354ebfae57b7db67e7b00e3e98ce949f2d2804d7fd34b9dd7c6880e7eb2a","impliedFormat":99},{"version":"12bb60846e84018bdbc2617c6d76fbba9f375067d8aafb4e941c102fe017e3f3","signature":"881a5d41b0c3383d280fe2f3838ff11f880c41a1d47edd4489a39c9c7acffb6a"},{"version":"d872b31a43d0d81f13ee111873a975df10fcd9c07cfd8698356e4d9a57bc4576","signature":"2a49b24214a9709c04c7d21d99f1473058bd3b4d1310655288347a4c8862da30"}],"root":[80,91,92,95,96],"options":{"allowJs":true,"allowSyntheticDefaultImports":true,"checkJs":true,"composite":true,"declaration":true,"declarationDir":"./build-types","declarationMap":true,"emitDeclarationOnly":true,"esModuleInterop":false,"jsx":1,"module":99,"noFallthroughCasesInSwitch":true,"noImplicitReturns":true,"rootDir":"./src","skipDefaultLibCheck":true,"strict":true,"target":99},"referencedMap":[[94,1],[81,2],[86,3],[88,3],[87,3],[84,3],[89,4],[83,3],[85,3],[90,5],[82,6],[91,7],[92,8],[96,9],[95,10]],"latestChangedDtsFile":"./build-types/index.d.ts","version":"5.7.2"}
1
+ {"fileNames":["../../node_modules/typescript/lib/lib.es5.d.ts","../../node_modules/typescript/lib/lib.es2015.d.ts","../../node_modules/typescript/lib/lib.es2016.d.ts","../../node_modules/typescript/lib/lib.es2017.d.ts","../../node_modules/typescript/lib/lib.es2018.d.ts","../../node_modules/typescript/lib/lib.es2019.d.ts","../../node_modules/typescript/lib/lib.es2020.d.ts","../../node_modules/typescript/lib/lib.es2021.d.ts","../../node_modules/typescript/lib/lib.es2022.d.ts","../../node_modules/typescript/lib/lib.es2023.d.ts","../../node_modules/typescript/lib/lib.es2024.d.ts","../../node_modules/typescript/lib/lib.esnext.d.ts","../../node_modules/typescript/lib/lib.dom.d.ts","../../node_modules/typescript/lib/lib.dom.iterable.d.ts","../../node_modules/typescript/lib/lib.es2015.core.d.ts","../../node_modules/typescript/lib/lib.es2015.collection.d.ts","../../node_modules/typescript/lib/lib.es2015.generator.d.ts","../../node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../node_modules/typescript/lib/lib.es2015.promise.d.ts","../../node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../node_modules/typescript/lib/lib.es2016.intl.d.ts","../../node_modules/typescript/lib/lib.es2017.arraybuffer.d.ts","../../node_modules/typescript/lib/lib.es2017.date.d.ts","../../node_modules/typescript/lib/lib.es2017.object.d.ts","../../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../node_modules/typescript/lib/lib.es2017.string.d.ts","../../node_modules/typescript/lib/lib.es2017.intl.d.ts","../../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../node_modules/typescript/lib/lib.es2018.intl.d.ts","../../node_modules/typescript/lib/lib.es2018.promise.d.ts","../../node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../node_modules/typescript/lib/lib.es2019.array.d.ts","../../node_modules/typescript/lib/lib.es2019.object.d.ts","../../node_modules/typescript/lib/lib.es2019.string.d.ts","../../node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../node_modules/typescript/lib/lib.es2019.intl.d.ts","../../node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../node_modules/typescript/lib/lib.es2020.date.d.ts","../../node_modules/typescript/lib/lib.es2020.promise.d.ts","../../node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../node_modules/typescript/lib/lib.es2020.string.d.ts","../../node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../node_modules/typescript/lib/lib.es2020.intl.d.ts","../../node_modules/typescript/lib/lib.es2020.number.d.ts","../../node_modules/typescript/lib/lib.es2021.promise.d.ts","../../node_modules/typescript/lib/lib.es2021.string.d.ts","../../node_modules/typescript/lib/lib.es2021.weakref.d.ts","../../node_modules/typescript/lib/lib.es2021.intl.d.ts","../../node_modules/typescript/lib/lib.es2022.array.d.ts","../../node_modules/typescript/lib/lib.es2022.error.d.ts","../../node_modules/typescript/lib/lib.es2022.intl.d.ts","../../node_modules/typescript/lib/lib.es2022.object.d.ts","../../node_modules/typescript/lib/lib.es2022.string.d.ts","../../node_modules/typescript/lib/lib.es2022.regexp.d.ts","../../node_modules/typescript/lib/lib.es2023.array.d.ts","../../node_modules/typescript/lib/lib.es2023.collection.d.ts","../../node_modules/typescript/lib/lib.es2023.intl.d.ts","../../node_modules/typescript/lib/lib.es2024.arraybuffer.d.ts","../../node_modules/typescript/lib/lib.es2024.collection.d.ts","../../node_modules/typescript/lib/lib.es2024.object.d.ts","../../node_modules/typescript/lib/lib.es2024.promise.d.ts","../../node_modules/typescript/lib/lib.es2024.regexp.d.ts","../../node_modules/typescript/lib/lib.es2024.sharedmemory.d.ts","../../node_modules/typescript/lib/lib.es2024.string.d.ts","../../node_modules/typescript/lib/lib.esnext.array.d.ts","../../node_modules/typescript/lib/lib.esnext.collection.d.ts","../../node_modules/typescript/lib/lib.esnext.intl.d.ts","../../node_modules/typescript/lib/lib.esnext.disposable.d.ts","../../node_modules/typescript/lib/lib.esnext.decorators.d.ts","../../node_modules/typescript/lib/lib.esnext.iterator.d.ts","../../node_modules/typescript/lib/lib.decorators.d.ts","../../node_modules/typescript/lib/lib.decorators.legacy.d.ts","../../node_modules/tannin/index.d.ts","../../node_modules/@tannin/sprintf/types/index.d.ts","../../node_modules/@tannin/sprintf/src/index.d.ts","./src/types.ts","../hooks/build-types/createAddHook.d.ts","../hooks/build-types/types.d.ts","../hooks/build-types/createRemoveHook.d.ts","../hooks/build-types/createHasHook.d.ts","../hooks/build-types/createRunHook.d.ts","../hooks/build-types/createCurrentHook.d.ts","../hooks/build-types/createDoingHook.d.ts","../hooks/build-types/createDidHook.d.ts","../hooks/build-types/createHooks.d.ts","../hooks/build-types/index.d.ts","./src/create-i18n.ts","./src/default-i18n.ts","./src/sprintf.ts","./src/index.ts"],"fileIdsList":[[80],[92],[84],[83,84,85,86,87,88,89,90],[83,84,85,86,87,89,90,91],[91],[79,82,92],[82,92,93],[82,93,94,95],[81,82],[79,81]],"fileInfos":[{"version":"e41c290ef7dd7dab3493e6cbe5909e0148edf4a8dad0271be08edec368a0f7b9","affectsGlobalScope":true,"impliedFormat":1},{"version":"45b7ab580deca34ae9729e97c13cfd999df04416a79116c3bfb483804f85ded4","impliedFormat":1},{"version":"3facaf05f0c5fc569c5649dd359892c98a85557e3e0c847964caeb67076f4d75","impliedFormat":1},{"version":"e44bb8bbac7f10ecc786703fe0a6a4b952189f908707980ba8f3c8975a760962","impliedFormat":1},{"version":"5e1c4c362065a6b95ff952c0eab010f04dcd2c3494e813b493ecfd4fcb9fc0d8","impliedFormat":1},{"version":"68d73b4a11549f9c0b7d352d10e91e5dca8faa3322bfb77b661839c42b1ddec7","impliedFormat":1},{"version":"5efce4fc3c29ea84e8928f97adec086e3dc876365e0982cc8479a07954a3efd4","impliedFormat":1},{"version":"feecb1be483ed332fad555aff858affd90a48ab19ba7272ee084704eb7167569","impliedFormat":1},{"version":"ee7bad0c15b58988daa84371e0b89d313b762ab83cb5b31b8a2d1162e8eb41c2","impliedFormat":1},{"version":"27bdc30a0e32783366a5abeda841bc22757c1797de8681bbe81fbc735eeb1c10","impliedFormat":1},{"version":"8fd575e12870e9944c7e1d62e1f5a73fcf23dd8d3a321f2a2c74c20d022283fe","impliedFormat":1},{"version":"e12a46ce14b817d4c9e6b2b478956452330bf00c9801b79de46f7a1815b5bd40","impliedFormat":1},{"version":"4fd3f3422b2d2a3dfd5cdd0f387b3a8ec45f006c6ea896a4cb41264c2100bb2c","affectsGlobalScope":true,"impliedFormat":1},{"version":"69e65d976bf166ce4a9e6f6c18f94d2424bf116e90837ace179610dbccad9b42","affectsGlobalScope":true,"impliedFormat":1},{"version":"c57796738e7f83dbc4b8e65132f11a377649c00dd3eee333f672b8f0a6bea671","affectsGlobalScope":true,"impliedFormat":1},{"version":"dc2df20b1bcdc8c2d34af4926e2c3ab15ffe1160a63e58b7e09833f616efff44","affectsGlobalScope":true,"impliedFormat":1},{"version":"515d0b7b9bea2e31ea4ec968e9edd2c39d3eebf4a2d5cbd04e88639819ae3b71","affectsGlobalScope":true,"impliedFormat":1},{"version":"62bb211266ee48b2d0edf0d8d1b191f0c24fc379a82bd4c1692a082c540bc6b1","affectsGlobalScope":true,"impliedFormat":1},{"version":"0dc1e7ceda9b8b9b455c3a2d67b0412feab00bd2f66656cd8850e8831b08b537","affectsGlobalScope":true,"impliedFormat":1},{"version":"ce691fb9e5c64efb9547083e4a34091bcbe5bdb41027e310ebba8f7d96a98671","affectsGlobalScope":true,"impliedFormat":1},{"version":"8d697a2a929a5fcb38b7a65594020fcef05ec1630804a33748829c5ff53640d0","affectsGlobalScope":true,"impliedFormat":1},{"version":"4ff2a353abf8a80ee399af572debb8faab2d33ad38c4b4474cff7f26e7653b8d","affectsGlobalScope":true,"impliedFormat":1},{"version":"936e80ad36a2ee83fc3caf008e7c4c5afe45b3cf3d5c24408f039c1d47bdc1df","affectsGlobalScope":true,"impliedFormat":1},{"version":"d15bea3d62cbbdb9797079416b8ac375ae99162a7fba5de2c6c505446486ac0a","affectsGlobalScope":true,"impliedFormat":1},{"version":"68d18b664c9d32a7336a70235958b8997ebc1c3b8505f4f1ae2b7e7753b87618","affectsGlobalScope":true,"impliedFormat":1},{"version":"eb3d66c8327153d8fa7dd03f9c58d351107fe824c79e9b56b462935176cdf12a","affectsGlobalScope":true,"impliedFormat":1},{"version":"38f0219c9e23c915ef9790ab1d680440d95419ad264816fa15009a8851e79119","affectsGlobalScope":true,"impliedFormat":1},{"version":"69ab18c3b76cd9b1be3d188eaf8bba06112ebbe2f47f6c322b5105a6fbc45a2e","affectsGlobalScope":true,"impliedFormat":1},{"version":"fef8cfad2e2dc5f5b3d97a6f4f2e92848eb1b88e897bb7318cef0e2820bceaab","affectsGlobalScope":true,"impliedFormat":1},{"version":"2f11ff796926e0832f9ae148008138ad583bd181899ab7dd768a2666700b1893","affectsGlobalScope":true,"impliedFormat":1},{"version":"4de680d5bb41c17f7f68e0419412ca23c98d5749dcaaea1896172f06435891fc","affectsGlobalScope":true,"impliedFormat":1},{"version":"954296b30da6d508a104a3a0b5d96b76495c709785c1d11610908e63481ee667","affectsGlobalScope":true,"impliedFormat":1},{"version":"ac9538681b19688c8eae65811b329d3744af679e0bdfa5d842d0e32524c73e1c","affectsGlobalScope":true,"impliedFormat":1},{"version":"0a969edff4bd52585473d24995c5ef223f6652d6ef46193309b3921d65dd4376","affectsGlobalScope":true,"impliedFormat":1},{"version":"9e9fbd7030c440b33d021da145d3232984c8bb7916f277e8ffd3dc2e3eae2bdb","affectsGlobalScope":true,"impliedFormat":1},{"version":"811ec78f7fefcabbda4bfa93b3eb67d9ae166ef95f9bff989d964061cbf81a0c","affectsGlobalScope":true,"impliedFormat":1},{"version":"717937616a17072082152a2ef351cb51f98802fb4b2fdabd32399843875974ca","affectsGlobalScope":true,"impliedFormat":1},{"version":"d7e7d9b7b50e5f22c915b525acc5a49a7a6584cf8f62d0569e557c5cfc4b2ac2","affectsGlobalScope":true,"impliedFormat":1},{"version":"71c37f4c9543f31dfced6c7840e068c5a5aacb7b89111a4364b1d5276b852557","affectsGlobalScope":true,"impliedFormat":1},{"version":"576711e016cf4f1804676043e6a0a5414252560eb57de9faceee34d79798c850","affectsGlobalScope":true,"impliedFormat":1},{"version":"89c1b1281ba7b8a96efc676b11b264de7a8374c5ea1e6617f11880a13fc56dc6","affectsGlobalScope":true,"impliedFormat":1},{"version":"74f7fa2d027d5b33eb0471c8e82a6c87216223181ec31247c357a3e8e2fddc5b","affectsGlobalScope":true,"impliedFormat":1},{"version":"f1e2a172204962276504466a6393426d2ca9c54894b1ad0a6c9dad867a65f876","affectsGlobalScope":true,"impliedFormat":1},{"version":"063600664504610fe3e99b717a1223f8b1900087fab0b4cad1496a114744f8df","affectsGlobalScope":true,"impliedFormat":1},{"version":"934019d7e3c81950f9a8426d093458b65d5aff2c7c1511233c0fd5b941e608ab","affectsGlobalScope":true,"impliedFormat":1},{"version":"52ada8e0b6e0482b728070b7639ee42e83a9b1c22d205992756fe020fd9f4a47","affectsGlobalScope":true,"impliedFormat":1},{"version":"3bdefe1bfd4d6dee0e26f928f93ccc128f1b64d5d501ff4a8cf3c6371200e5e6","affectsGlobalScope":true,"impliedFormat":1},{"version":"59fb2c069260b4ba00b5643b907ef5d5341b167e7d1dbf58dfd895658bda2867","affectsGlobalScope":true,"impliedFormat":1},{"version":"639e512c0dfc3fad96a84caad71b8834d66329a1f28dc95e3946c9b58176c73a","affectsGlobalScope":true,"impliedFormat":1},{"version":"368af93f74c9c932edd84c58883e736c9e3d53cec1fe24c0b0ff451f529ceab1","affectsGlobalScope":true,"impliedFormat":1},{"version":"af3dd424cf267428f30ccfc376f47a2c0114546b55c44d8c0f1d57d841e28d74","affectsGlobalScope":true,"impliedFormat":1},{"version":"995c005ab91a498455ea8dfb63aa9f83fa2ea793c3d8aa344be4a1678d06d399","affectsGlobalScope":true,"impliedFormat":1},{"version":"959d36cddf5e7d572a65045b876f2956c973a586da58e5d26cde519184fd9b8a","affectsGlobalScope":true,"impliedFormat":1},{"version":"965f36eae237dd74e6cca203a43e9ca801ce38824ead814728a2807b1910117d","affectsGlobalScope":true,"impliedFormat":1},{"version":"3925a6c820dcb1a06506c90b1577db1fdbf7705d65b62b99dce4be75c637e26b","affectsGlobalScope":true,"impliedFormat":1},{"version":"0a3d63ef2b853447ec4f749d3f368ce642264246e02911fcb1590d8c161b8005","affectsGlobalScope":true,"impliedFormat":1},{"version":"b5ce7a470bc3628408429040c4e3a53a27755022a32fd05e2cb694e7015386c7","affectsGlobalScope":true,"impliedFormat":1},{"version":"8444af78980e3b20b49324f4a16ba35024fef3ee069a0eb67616ea6ca821c47a","affectsGlobalScope":true,"impliedFormat":1},{"version":"3287d9d085fbd618c3971944b65b4be57859f5415f495b33a6adc994edd2f004","affectsGlobalScope":true,"impliedFormat":1},{"version":"b4b67b1a91182421f5df999988c690f14d813b9850b40acd06ed44691f6727ad","affectsGlobalScope":true,"impliedFormat":1},{"version":"bab26767638ab3557de12c900f0b91f710c7dc40ee9793d5a27d32c04f0bf646","affectsGlobalScope":true,"impliedFormat":1},{"version":"436aaf437562f276ec2ddbee2f2cdedac7664c1e4c1d2c36839ddd582eeb3d0a","affectsGlobalScope":true,"impliedFormat":1},{"version":"8e3c06ea092138bf9fa5e874a1fdbc9d54805d074bee1de31b99a11e2fec239d","affectsGlobalScope":true,"impliedFormat":1},{"version":"87dc0f382502f5bbce5129bdc0aea21e19a3abbc19259e0b43ae038a9fc4e326","affectsGlobalScope":true,"impliedFormat":1},{"version":"b1cb28af0c891c8c96b2d6b7be76bd394fddcfdb4709a20ba05a7c1605eea0f9","affectsGlobalScope":true,"impliedFormat":1},{"version":"2fef54945a13095fdb9b84f705f2b5994597640c46afeb2ce78352fab4cb3279","affectsGlobalScope":true,"impliedFormat":1},{"version":"ac77cb3e8c6d3565793eb90a8373ee8033146315a3dbead3bde8db5eaf5e5ec6","affectsGlobalScope":true,"impliedFormat":1},{"version":"56e4ed5aab5f5920980066a9409bfaf53e6d21d3f8d020c17e4de584d29600ad","affectsGlobalScope":true,"impliedFormat":1},{"version":"4ece9f17b3866cc077099c73f4983bddbcb1dc7ddb943227f1ec070f529dedd1","affectsGlobalScope":true,"impliedFormat":1},{"version":"0a6282c8827e4b9a95f4bf4f5c205673ada31b982f50572d27103df8ceb8013c","affectsGlobalScope":true,"impliedFormat":1},{"version":"1c9319a09485199c1f7b0498f2988d6d2249793ef67edda49d1e584746be9032","affectsGlobalScope":true,"impliedFormat":1},{"version":"e3a2a0cee0f03ffdde24d89660eba2685bfbdeae955a6c67e8c4c9fd28928eeb","affectsGlobalScope":true,"impliedFormat":1},{"version":"811c71eee4aa0ac5f7adf713323a5c41b0cf6c4e17367a34fbce379e12bbf0a4","affectsGlobalScope":true,"impliedFormat":1},{"version":"51ad4c928303041605b4d7ae32e0c1ee387d43a24cd6f1ebf4a2699e1076d4fa","affectsGlobalScope":true,"impliedFormat":1},{"version":"d4b1d2c51d058fc21ec2629fff7a76249dec2e36e12960ea056e3ef89174080f","affectsGlobalScope":true,"impliedFormat":1},{"version":"61d6a2092f48af66dbfb220e31eea8b10bc02b6932d6e529005fd2d7b3281290","affectsGlobalScope":true,"impliedFormat":1},{"version":"8e7f8264d0fb4c5339605a15daadb037bf238c10b654bb3eee14208f860a32ea","affectsGlobalScope":true,"impliedFormat":1},{"version":"782dec38049b92d4e85c1585fbea5474a219c6984a35b004963b00beb1aab538","affectsGlobalScope":true,"impliedFormat":1},{"version":"0d1179b6e77f3c31405e0c31f52f13bc4270555bdd3157f0bc855d5e7fe2c4cf","impliedFormat":1},{"version":"c709147f2a650b942c69f42c341f0456922911e8ee0b63eba1d46ed7c24d82bf","impliedFormat":99},{"version":"7c8f354ebfae57b7db67e7b00e3e98ce949f2d2804d7fd34b9dd7c6880e7eb2a","impliedFormat":99},{"version":"111fa477a4b6d4de7c0cb140598e1a9d801f7c96271581d2edf708bcb23e6083","signature":"497a2fc9f9029fab0cc80a784845867c5af173fbe16881500b62edd6919ba3ce"},"e89c5f3e57750498ecc0904025a5faaa2067a54ce82dac6ba2b8cf0cfd41ccc2","09fe1d225f4a83f48ea5f67f1be80f6e674280a4f8c38d0ebd649862237066bb","4ad429086c5d55543eb1146b31a2de27e54ad772d1626d19b80502b3fff43b84","6b089383aa85af6dd1619a6fb9468a1eec60c2ce83be3f4fc691a323275860c4","cdbced29135877ea367650ee1c49c482a46cbbd0befdbfb730e8780d5982aa41","5461443f907ddbae5a8b8cd9a32ac614e396bf505acd4b09245d4ec0b1dbebd2","26a0c627921511b17209aa6e90510e25a424b8cb1b08ac74d29d98bfb35e1959","6508e23a7d089883b385ab273c9ae40301e953e987c4363bdbc6f788b88ff9ce","ee1a1f6f69c6e3f7cdb0fd5a920d72cd9c2e69229919ad0d7b590dda51348bca","d150550f9f93d9b865bdba497dfee108bfc0af237d186fb173af51a0646e3643",{"version":"7accd06d2bddb36e6660b54bbea94fe1e9f1b7993bdebdf683dd329fa36bab5e","signature":"2aef2be50a4cc4626209af6c7735a3be2eb9d8643fb189c72a21ea4d467231c7"},{"version":"9aef6555baae76f8b4bd52f18b59458c69a06740ba8ac8d4d43fbc842062c978","signature":"4c74dd582fab386fc92df4c0f214f0e6ac3d522b73f5dae2ebcf8094c50cf08b"},{"version":"39776368eebf587dd9b92328fc4b2fc7ec86cd3da7c46d945c48eb5c54254a35","signature":"ccbb4955fbd599f75be76bc0f6b9ffa9264dc59c507a2aeecb41dec88bb5f3f6"},{"version":"93d84cff94c2197699159485fd9a70e066edb0d5a86ae3d6a8ddb4250a67a441","signature":"f07884c953b96279eaed286f01f6b3deeea5d889125db08b27ee6e9dbd3e369b"}],"root":[82,[93,96]],"options":{"allowJs":true,"allowSyntheticDefaultImports":true,"checkJs":true,"composite":true,"declaration":true,"declarationDir":"./build-types","declarationMap":true,"emitDeclarationOnly":true,"esModuleInterop":false,"jsx":1,"module":99,"noFallthroughCasesInSwitch":true,"noImplicitReturns":true,"rootDir":"./src","skipDefaultLibCheck":true,"strict":true,"target":99},"referencedMap":[[81,1],[83,2],[88,3],[90,3],[89,3],[86,3],[91,4],[85,3],[87,3],[92,5],[84,6],[93,7],[94,8],[96,9],[95,10],[82,11]],"latestChangedDtsFile":"./build-types/index.d.ts","version":"5.7.2"}