tering-serieuze-types 3.3.2 → 3.3.3

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,4 +1,4 @@
1
- import { ClickType } from '../index';
1
+ import { type ClickType } from '../index';
2
2
 
3
3
  export * from './mopidy';
4
4
  export * from './token';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "tering-serieuze-types",
3
- "version": "3.3.2",
3
+ "version": "3.3.3",
4
4
  "description": "Tering serieuze types",
5
5
  "author": "Frank",
6
6
  "repository": {
package/src/user.ts CHANGED
@@ -100,5 +100,5 @@ export class WsUpdateStoreDto {
100
100
  }
101
101
 
102
102
  export class WsUpdateStoreSetAccount extends WsUpdateStoreDto {
103
- payload: User | null = null;
103
+ override payload: User | null = null;
104
104
  }