@nasl/types 0.1.12 → 0.1.13

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.
@@ -26,7 +26,7 @@ declare namespace nasl.ui {
26
26
 
27
27
  export function Component(options?: ViewComponentOpts): (target: any) => void;
28
28
 
29
- export function Prop(options?: PropOpts<never, never>): (target: any, key: string) => void;
29
+ export function Prop(options?: PropOpts<any, any>): (target: any, key: string) => void;
30
30
  export function Prop<T extends object, K extends keyof T>(options?: PropOpts<T, K>): (target: T, key: K) => void;
31
31
 
32
32
  export function Event(options?: EventOpts): (target: any, key: string) => void;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nasl/types",
3
- "version": "0.1.12",
3
+ "version": "0.1.13",
4
4
  "description": "NASL types for TypeScript Declaration",
5
5
  "main": "index.d.ts",
6
6
  "scripts": {