@lls/typings 24.1.36-cfec4f21 → 24.1.36-d3312d4e
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/internal/page.d.ts +2 -4
- package/package.json +1 -1
package/internal/page.d.ts
CHANGED
|
@@ -3,7 +3,7 @@ import type { TODO } from '@typings/utils'
|
|
|
3
3
|
|
|
4
4
|
export type ScreenMode = 'grid-xs' | 'grid-md'
|
|
5
5
|
|
|
6
|
-
export type SubzoneTypeCategory = 'picWord' | 'definition' | 'subZone'
|
|
6
|
+
export type SubzoneTypeCategory = 'picWord' | 'definition' | 'subZone'
|
|
7
7
|
|
|
8
8
|
export type Rect = {
|
|
9
9
|
x: number
|
|
@@ -22,9 +22,8 @@ export type PicWordType = ZoneType & {
|
|
|
22
22
|
type: Extract<SubzoneTypeCategory, 'picWord'>
|
|
23
23
|
word?: Word
|
|
24
24
|
}
|
|
25
|
-
export type MaskType = ZoneType & { type: Extract<SubzoneTypeCategory, 'mask'> }
|
|
26
25
|
|
|
27
|
-
export type SubZoneType = ZoomZoneType | DefinitionsType | PicWordType
|
|
26
|
+
export type SubZoneType = ZoomZoneType | DefinitionsType | PicWordType
|
|
28
27
|
|
|
29
28
|
export type DocJson<T extends 'primary' | 'default' = 'default'> = {
|
|
30
29
|
id?: number
|
|
@@ -35,7 +34,6 @@ export type DocJson<T extends 'primary' | 'default' = 'default'> = {
|
|
|
35
34
|
picWords?: PicWordType[]
|
|
36
35
|
definitions?: DefinitionsType[]
|
|
37
36
|
subZones?: ZoomZoneType[]
|
|
38
|
-
masks?: MaskType[]
|
|
39
37
|
audios?: string[]
|
|
40
38
|
videos?: string[]
|
|
41
39
|
rives?: { src: string; stateMachines: string }[]
|