@lls/typings 24.1.34-91c5c773 → 24.1.34-a1aa2db0

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.
@@ -1,3 +1,4 @@
1
+ import type { Word } from '@typings/internal/word'
1
2
  import type { TODO } from '@typings/utils'
2
3
 
3
4
  export type ScreenMode = 'grid-xs' | 'grid-md'
@@ -17,7 +18,10 @@ export type ZoneType = {
17
18
 
18
19
  export type ZoomZoneType = ZoneType & { type: Extract<SubzoneTypeCategory, 'subZone'> }
19
20
  export type DefinitionsType = ZoneType & { type: Extract<SubzoneTypeCategory, 'definition'>; src?: string }
20
- export type PicWordType = ZoneType & { type: Extract<SubzoneTypeCategory, 'picWord'>; word?: string; src?: string }
21
+ export type PicWordType = ZoneType & {
22
+ type: Extract<SubzoneTypeCategory, 'picWord'>
23
+ word?: Word
24
+ }
21
25
 
22
26
  export type SubZoneType = ZoomZoneType | DefinitionsType | PicWordType
23
27
 
@@ -0,0 +1,5 @@
1
+ export type Word = {
2
+ id: number
3
+ title: string
4
+ src: string
5
+ }
package/models.d.ts CHANGED
@@ -10,4 +10,5 @@ export * from './internal/schoolType'
10
10
  export * from './internal/subject'
11
11
  export * from './internal/summary'
12
12
  export * from './internal/user'
13
+ export * from './internal/word'
13
14
  export * from './internal/resourcesMenu'
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lls/typings",
3
- "version": "24.1.34-91c5c773",
3
+ "version": "24.1.34-a1aa2db0",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "keywords": [],