create-quasar 1.11.0 → 1.11.2

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": "create-quasar",
3
- "version": "1.11.0",
3
+ "version": "1.11.2",
4
4
  "description": "Scaffolds Quasar Apps, AppExtensions or UI kits",
5
5
  "type": "module",
6
6
  "author": {
@@ -8,8 +8,9 @@ import type { Router } from 'vue-router';
8
8
  * @see https://pinia.vuejs.org/core-concepts/plugins.html#typing-new-store-properties
9
9
  */
10
10
  declare module 'pinia' {
11
+ // eslint-disable-next-line @typescript-eslint/no-empty-object-type
11
12
  export interface PiniaCustomProperties {
12
- readonly router: Router;
13
+ // add your custom properties here, if any
13
14
  }
14
15
  }
15
16
 
@@ -8,8 +8,9 @@ import type { Router } from 'vue-router';
8
8
  * @see https://pinia.vuejs.org/core-concepts/plugins.html#typing-new-store-properties
9
9
  */
10
10
  declare module 'pinia' {
11
+ // eslint-disable-next-line @typescript-eslint/no-empty-object-type
11
12
  export interface PiniaCustomProperties {
12
- readonly router: Router;
13
+ // add your custom properties here, if any
13
14
  }
14
15
  }
15
16