@shakerquiz/utilities 0.2.11 → 0.2.12

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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@shakerquiz/utilities",
3
- "version": "0.2.11",
3
+ "version": "0.2.12",
4
4
  "author": "yurkimus <yurkimus@gmail.com>",
5
5
  "license": "ISC",
6
6
  "exports": {
@@ -4,35 +4,35 @@ export let Patterns = {
4
4
  /**
5
5
  * Users
6
6
  */
7
- [Features.Checkin]: URLPattern,
7
+ [Features.Checkin]: InstanceType<typeof URLPattern>,
8
8
 
9
- [Features.User]: URLPattern,
9
+ [Features.User]: InstanceType<typeof URLPattern>,
10
10
 
11
- [Features.Users]: URLPattern,
11
+ [Features.Users]: InstanceType<typeof URLPattern>,
12
12
 
13
13
  /**
14
14
  * Games
15
15
  */
16
- [Features.Theme]: URLPattern,
16
+ [Features.Theme]: InstanceType<typeof URLPattern>,
17
17
 
18
- [Features.Themes]: URLPattern,
18
+ [Features.Themes]: InstanceType<typeof URLPattern>,
19
19
 
20
- [Features.Game]: URLPattern,
20
+ [Features.Game]: InstanceType<typeof URLPattern>,
21
21
 
22
- [Features.Games]: URLPattern,
22
+ [Features.Games]: InstanceType<typeof URLPattern>,
23
23
 
24
- [Features.Registration]: URLPattern,
24
+ [Features.Registration]: InstanceType<typeof URLPattern>,
25
25
 
26
- [Features.Registrations]: URLPattern,
26
+ [Features.Registrations]: InstanceType<typeof URLPattern>,
27
27
 
28
28
  /**
29
29
  * Locations
30
30
  */
31
- [Features.City]: URLPattern,
31
+ [Features.City]: InstanceType<typeof URLPattern>,
32
32
 
33
- [Features.Cities]: URLPattern,
33
+ [Features.Cities]: InstanceType<typeof URLPattern>,
34
34
 
35
- [Features.Location]: URLPattern,
35
+ [Features.Location]: InstanceType<typeof URLPattern>,
36
36
 
37
- [Features.Locations]: URLPattern,
37
+ [Features.Locations]: InstanceType<typeof URLPattern>,
38
38
  }