@@ -117,6 +117,7 @@ declare global {
117
117
const copyFolder : typeof import ( '../core/storage/src/copy' ) [ 'copyFolder' ]
118
118
const coreEnvPath : typeof import ( '../core/path/src/index' ) [ 'coreEnvPath' ]
119
119
const corePath : typeof import ( '../core/path/src/index' ) [ 'corePath' ]
120
+ const count : typeof import ( '../../resources/functions/counter' ) [ 'count' ]
120
121
const createApp : typeof import ( 'vue' ) [ 'createApp' ]
121
122
const createControlledPromise : typeof import ( '../core/utils/src/promise' ) [ 'createControlledPromise' ]
122
123
const createEventHook : typeof import ( '../core/utils/src/vendors' ) [ 'createEventHook' ]
@@ -269,7 +270,7 @@ declare global {
269
270
const getSSRHandler : typeof import ( '../core/utils/src/vendors' ) [ 'getSSRHandler' ]
270
271
const getTypeName : typeof import ( '../core/utils/src/base' ) [ 'getTypeName' ]
271
272
const gitPath : typeof import ( '../core/path/src/index' ) [ 'gitPath' ]
272
- const glob : typeof import ( '../core/utils/src/vendors ' ) [ 'glob' ]
273
+ const glob : typeof import ( '../core/utils/src/glob ' ) [ 'glob' ]
273
274
const goToNextPage : typeof import ( '../core/search-engine/src/index' ) [ 'goToNextPage' ]
274
275
const goToPage : typeof import ( '../core/search-engine/src/index' ) [ 'goToPage' ]
275
276
const goToPrevPage : typeof import ( '../core/search-engine/src/index' ) [ 'goToPrevPage' ]
@@ -292,6 +293,7 @@ declare global {
292
293
const helpers : typeof import ( '../core/storage/src/helpers' ) [ 'helpers' ]
293
294
const hits : typeof import ( '../core/search-engine/src/index' ) [ 'hits' ]
294
295
const ignorableWatch : typeof import ( '../core/utils/src/vendors' ) [ 'ignorableWatch' ]
296
+ const increment : typeof import ( '../../resources/functions/counter' ) [ 'increment' ]
295
297
const index : typeof import ( '../core/search-engine/src/index' ) [ 'index' ]
296
298
const initProject : typeof import ( '../core/utils/src/helpers' ) [ 'initProject' ]
297
299
const inject : typeof import ( 'vue' ) [ 'inject' ]
@@ -301,6 +303,7 @@ declare global {
301
303
const isArray : typeof import ( '../core/validation/src/is' ) [ 'isArray' ]
302
304
const isBoolean : typeof import ( '../core/validation/src/is' ) [ 'isBoolean' ]
303
305
const isBrowser : typeof import ( '../core/validation/src/is' ) [ 'isBrowser' ]
306
+ const isDark : typeof import ( '../../resources/functions/dark' ) [ 'isDark' ]
304
307
const isDate : typeof import ( '../core/validation/src/is' ) [ 'isDate' ]
305
308
const isDeepEqual : typeof import ( '../core/utils/src/equal' ) [ 'isDeepEqual' ]
306
309
const isDef : typeof import ( '../core/validation/src/is' ) [ 'isDef' ]
@@ -439,6 +442,7 @@ declare global {
439
442
const paymentsPath : typeof import ( '../core/path/src/index' ) [ 'paymentsPath' ]
440
443
const perPage : typeof import ( '../core/search-engine/src/index' ) [ 'perPage' ]
441
444
const plivo : typeof import ( '../core/notifications/sms/src/drivers/index' ) [ 'plivo' ]
445
+ const preferredDark : typeof import ( '../../resources/functions/dark' ) [ 'preferredDark' ]
442
446
const presetForms : typeof import ( '../core/ui/src/index' ) [ 'presetForms' ]
443
447
const projectConfigPath : typeof import ( '../core/path/src/index' ) [ 'projectConfigPath' ]
444
448
const projectPath : typeof import ( '../core/path/src/index' ) [ 'projectPath' ]
@@ -545,6 +549,7 @@ declare global {
545
549
const toString : typeof import ( '../core/utils/src/base' ) [ 'toString' ]
546
550
const toUnits : typeof import ( '../core/utils/src/currency' ) [ 'toUnits' ]
547
551
const toValue : typeof import ( 'vue' ) [ 'toValue' ]
552
+ const toggleDark : typeof import ( '../../resources/functions/dark' ) [ 'toggleDark' ]
548
553
const totalPages : typeof import ( '../core/search-engine/src/index' ) [ 'totalPages' ]
549
554
const transformerCompileClass : typeof import ( '../core/ui/src/index' ) [ 'transformerCompileClass' ]
550
555
const triggerRef : typeof import ( 'vue' ) [ 'triggerRef' ]
@@ -874,6 +879,7 @@ declare module 'vue' {
874
879
readonly copyFolder : UnwrapRef < typeof import ( '../core/storage/src/copy' ) [ 'copyFolder' ] >
875
880
readonly coreEnvPath : UnwrapRef < typeof import ( '../core/path/src/index' ) [ 'coreEnvPath' ] >
876
881
readonly corePath : UnwrapRef < typeof import ( '../core/path/src/index' ) [ 'corePath' ] >
882
+ readonly count : UnwrapRef < typeof import ( '../../resources/functions/counter' ) [ 'count' ] >
877
883
readonly createApp : UnwrapRef < typeof import ( 'vue' ) [ 'createApp' ] >
878
884
readonly createControlledPromise : UnwrapRef < typeof import ( '../core/utils/src/promise' ) [ 'createControlledPromise' ] >
879
885
readonly createEventHook : UnwrapRef < typeof import ( '../core/utils/src/vendors' ) [ 'createEventHook' ] >
@@ -1020,7 +1026,7 @@ declare module 'vue' {
1020
1026
readonly getSSRHandler : UnwrapRef < typeof import ( '../core/utils/src/vendors' ) [ 'getSSRHandler' ] >
1021
1027
readonly getTypeName : UnwrapRef < typeof import ( '../core/utils/src/base' ) [ 'getTypeName' ] >
1022
1028
readonly gitPath : UnwrapRef < typeof import ( '../core/path/src/index' ) [ 'gitPath' ] >
1023
- readonly glob : UnwrapRef < typeof import ( '../core/utils/src/vendors ' ) [ 'glob' ] >
1029
+ readonly glob : UnwrapRef < typeof import ( '../core/utils/src/glob ' ) [ 'glob' ] >
1024
1030
readonly goToNextPage : UnwrapRef < typeof import ( '../core/search-engine/src/index' ) [ 'goToNextPage' ] >
1025
1031
readonly goToPage : UnwrapRef < typeof import ( '../core/search-engine/src/index' ) [ 'goToPage' ] >
1026
1032
readonly goToPrevPage : UnwrapRef < typeof import ( '../core/search-engine/src/index' ) [ 'goToPrevPage' ] >
@@ -1043,6 +1049,7 @@ declare module 'vue' {
1043
1049
readonly helpers : UnwrapRef < typeof import ( '../core/storage/src/helpers' ) [ 'helpers' ] >
1044
1050
readonly hits : UnwrapRef < typeof import ( '../core/search-engine/src/index' ) [ 'hits' ] >
1045
1051
readonly ignorableWatch : UnwrapRef < typeof import ( '../core/utils/src/vendors' ) [ 'ignorableWatch' ] >
1052
+ readonly increment : UnwrapRef < typeof import ( '../../resources/functions/counter' ) [ 'increment' ] >
1046
1053
readonly index : UnwrapRef < typeof import ( '../core/search-engine/src/index' ) [ 'index' ] >
1047
1054
readonly initProject : UnwrapRef < typeof import ( '../core/utils/src/helpers' ) [ 'initProject' ] >
1048
1055
readonly inject : UnwrapRef < typeof import ( 'vue' ) [ 'inject' ] >
@@ -1052,6 +1059,7 @@ declare module 'vue' {
1052
1059
readonly isArray : UnwrapRef < typeof import ( '../core/validation/src/is' ) [ 'isArray' ] >
1053
1060
readonly isBoolean : UnwrapRef < typeof import ( '../core/validation/src/is' ) [ 'isBoolean' ] >
1054
1061
readonly isBrowser : UnwrapRef < typeof import ( '../core/validation/src/is' ) [ 'isBrowser' ] >
1062
+ readonly isDark : UnwrapRef < typeof import ( '../../resources/functions/dark' ) [ 'isDark' ] >
1055
1063
readonly isDate : UnwrapRef < typeof import ( '../core/validation/src/is' ) [ 'isDate' ] >
1056
1064
readonly isDeepEqual : UnwrapRef < typeof import ( '../core/utils/src/equal' ) [ 'isDeepEqual' ] >
1057
1065
readonly isDef : UnwrapRef < typeof import ( '../core/validation/src/is' ) [ 'isDef' ] >
@@ -1189,6 +1197,7 @@ declare module 'vue' {
1189
1197
readonly paymentsPath : UnwrapRef < typeof import ( '../core/path/src/index' ) [ 'paymentsPath' ] >
1190
1198
readonly perPage : UnwrapRef < typeof import ( '../core/search-engine/src/index' ) [ 'perPage' ] >
1191
1199
readonly plivo : UnwrapRef < typeof import ( '../core/notifications/sms/src/drivers/index' ) [ 'plivo' ] >
1200
+ readonly preferredDark : UnwrapRef < typeof import ( '../../resources/functions/dark' ) [ 'preferredDark' ] >
1192
1201
readonly presetForms : UnwrapRef < typeof import ( '../core/ui/src/index' ) [ 'presetForms' ] >
1193
1202
readonly projectConfigPath : UnwrapRef < typeof import ( '../core/path/src/index' ) [ 'projectConfigPath' ] >
1194
1203
readonly projectPath : UnwrapRef < typeof import ( '../core/path/src/index' ) [ 'projectPath' ] >
@@ -1295,6 +1304,7 @@ declare module 'vue' {
1295
1304
readonly toString : UnwrapRef < typeof import ( '../core/utils/src/base' ) [ 'toString' ] >
1296
1305
readonly toUnits : UnwrapRef < typeof import ( '../core/utils/src/currency' ) [ 'toUnits' ] >
1297
1306
readonly toValue : UnwrapRef < typeof import ( 'vue' ) [ 'toValue' ] >
1307
+ readonly toggleDark : UnwrapRef < typeof import ( '../../resources/functions/dark' ) [ 'toggleDark' ] >
1298
1308
readonly totalPages : UnwrapRef < typeof import ( '../core/search-engine/src/index' ) [ 'totalPages' ] >
1299
1309
readonly transformerCompileClass : UnwrapRef < typeof import ( '../core/ui/src/index' ) [ 'transformerCompileClass' ] >
1300
1310
readonly triggerRef : UnwrapRef < typeof import ( 'vue' ) [ 'triggerRef' ] >
@@ -1618,6 +1628,7 @@ declare module '@vue/runtime-core' {
1618
1628
readonly copyFolder : UnwrapRef < typeof import ( '../core/storage/src/copy' ) [ 'copyFolder' ] >
1619
1629
readonly coreEnvPath : UnwrapRef < typeof import ( '../core/path/src/index' ) [ 'coreEnvPath' ] >
1620
1630
readonly corePath : UnwrapRef < typeof import ( '../core/path/src/index' ) [ 'corePath' ] >
1631
+ readonly count : UnwrapRef < typeof import ( '../../resources/functions/counter' ) [ 'count' ] >
1621
1632
readonly createApp : UnwrapRef < typeof import ( 'vue' ) [ 'createApp' ] >
1622
1633
readonly createControlledPromise : UnwrapRef < typeof import ( '../core/utils/src/promise' ) [ 'createControlledPromise' ] >
1623
1634
readonly createEventHook : UnwrapRef < typeof import ( '../core/utils/src/vendors' ) [ 'createEventHook' ] >
@@ -1764,7 +1775,7 @@ declare module '@vue/runtime-core' {
1764
1775
readonly getSSRHandler : UnwrapRef < typeof import ( '../core/utils/src/vendors' ) [ 'getSSRHandler' ] >
1765
1776
readonly getTypeName : UnwrapRef < typeof import ( '../core/utils/src/base' ) [ 'getTypeName' ] >
1766
1777
readonly gitPath : UnwrapRef < typeof import ( '../core/path/src/index' ) [ 'gitPath' ] >
1767
- readonly glob : UnwrapRef < typeof import ( '../core/utils/src/vendors ' ) [ 'glob' ] >
1778
+ readonly glob : UnwrapRef < typeof import ( '../core/utils/src/glob ' ) [ 'glob' ] >
1768
1779
readonly goToNextPage : UnwrapRef < typeof import ( '../core/search-engine/src/index' ) [ 'goToNextPage' ] >
1769
1780
readonly goToPage : UnwrapRef < typeof import ( '../core/search-engine/src/index' ) [ 'goToPage' ] >
1770
1781
readonly goToPrevPage : UnwrapRef < typeof import ( '../core/search-engine/src/index' ) [ 'goToPrevPage' ] >
@@ -1787,6 +1798,7 @@ declare module '@vue/runtime-core' {
1787
1798
readonly helpers : UnwrapRef < typeof import ( '../core/storage/src/helpers' ) [ 'helpers' ] >
1788
1799
readonly hits : UnwrapRef < typeof import ( '../core/search-engine/src/index' ) [ 'hits' ] >
1789
1800
readonly ignorableWatch : UnwrapRef < typeof import ( '../core/utils/src/vendors' ) [ 'ignorableWatch' ] >
1801
+ readonly increment : UnwrapRef < typeof import ( '../../resources/functions/counter' ) [ 'increment' ] >
1790
1802
readonly index : UnwrapRef < typeof import ( '../core/search-engine/src/index' ) [ 'index' ] >
1791
1803
readonly initProject : UnwrapRef < typeof import ( '../core/utils/src/helpers' ) [ 'initProject' ] >
1792
1804
readonly inject : UnwrapRef < typeof import ( 'vue' ) [ 'inject' ] >
@@ -1796,6 +1808,7 @@ declare module '@vue/runtime-core' {
1796
1808
readonly isArray : UnwrapRef < typeof import ( '../core/validation/src/is' ) [ 'isArray' ] >
1797
1809
readonly isBoolean : UnwrapRef < typeof import ( '../core/validation/src/is' ) [ 'isBoolean' ] >
1798
1810
readonly isBrowser : UnwrapRef < typeof import ( '../core/validation/src/is' ) [ 'isBrowser' ] >
1811
+ readonly isDark : UnwrapRef < typeof import ( '../../resources/functions/dark' ) [ 'isDark' ] >
1799
1812
readonly isDate : UnwrapRef < typeof import ( '../core/validation/src/is' ) [ 'isDate' ] >
1800
1813
readonly isDeepEqual : UnwrapRef < typeof import ( '../core/utils/src/equal' ) [ 'isDeepEqual' ] >
1801
1814
readonly isDef : UnwrapRef < typeof import ( '../core/validation/src/is' ) [ 'isDef' ] >
@@ -1933,6 +1946,7 @@ declare module '@vue/runtime-core' {
1933
1946
readonly paymentsPath : UnwrapRef < typeof import ( '../core/path/src/index' ) [ 'paymentsPath' ] >
1934
1947
readonly perPage : UnwrapRef < typeof import ( '../core/search-engine/src/index' ) [ 'perPage' ] >
1935
1948
readonly plivo : UnwrapRef < typeof import ( '../core/notifications/sms/src/drivers/index' ) [ 'plivo' ] >
1949
+ readonly preferredDark : UnwrapRef < typeof import ( '../../resources/functions/dark' ) [ 'preferredDark' ] >
1936
1950
readonly presetForms : UnwrapRef < typeof import ( '../core/ui/src/index' ) [ 'presetForms' ] >
1937
1951
readonly projectConfigPath : UnwrapRef < typeof import ( '../core/path/src/index' ) [ 'projectConfigPath' ] >
1938
1952
readonly projectPath : UnwrapRef < typeof import ( '../core/path/src/index' ) [ 'projectPath' ] >
@@ -2039,6 +2053,7 @@ declare module '@vue/runtime-core' {
2039
2053
readonly toString : UnwrapRef < typeof import ( '../core/utils/src/base' ) [ 'toString' ] >
2040
2054
readonly toUnits : UnwrapRef < typeof import ( '../core/utils/src/currency' ) [ 'toUnits' ] >
2041
2055
readonly toValue : UnwrapRef < typeof import ( 'vue' ) [ 'toValue' ] >
2056
+ readonly toggleDark : UnwrapRef < typeof import ( '../../resources/functions/dark' ) [ 'toggleDark' ] >
2042
2057
readonly totalPages : UnwrapRef < typeof import ( '../core/search-engine/src/index' ) [ 'totalPages' ] >
2043
2058
readonly transformerCompileClass : UnwrapRef < typeof import ( '../core/ui/src/index' ) [ 'transformerCompileClass' ] >
2044
2059
readonly triggerRef : UnwrapRef < typeof import ( 'vue' ) [ 'triggerRef' ] >
0 commit comments