@nasl/types 0.1.4 → 0.1.6
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/nasl.ui.decorators.d.ts +3 -3
- package/package.json +1 -1
package/nasl.ui.decorators.d.ts
CHANGED
|
@@ -15,16 +15,16 @@ declare namespace nasl.ui {
|
|
|
15
15
|
concept: 'SwitchSetter',
|
|
16
16
|
},
|
|
17
17
|
})
|
|
18
|
-
|
|
18
|
+
_if: nasl.core.Boolean;
|
|
19
19
|
|
|
20
20
|
@Prop({
|
|
21
21
|
title: '工具提示',
|
|
22
22
|
description: '在鼠标悬停时显示的文字',
|
|
23
23
|
})
|
|
24
|
-
|
|
24
|
+
_tooltip: nasl.core.String;
|
|
25
25
|
}
|
|
26
26
|
|
|
27
|
-
export function Component(options?:
|
|
27
|
+
export function Component(options?: ViewComponentOpts): (target: any) => void;
|
|
28
28
|
|
|
29
29
|
export function Prop(options?: PropOpts<never, never>): (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;
|