@isopodlabs/vscode_utils 0.1.0 → 0.1.1
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/dist/jsx-runtime.d.ts +7 -3
- package/package.json +1 -1
package/dist/jsx-runtime.d.ts
CHANGED
|
@@ -6,6 +6,10 @@ export declare function jsxFrag(props: any): {
|
|
|
6
6
|
props: any;
|
|
7
7
|
};
|
|
8
8
|
export declare namespace JSX {
|
|
9
|
+
interface Element {
|
|
10
|
+
type: string;
|
|
11
|
+
props: any;
|
|
12
|
+
}
|
|
9
13
|
interface IntrinsicElements {
|
|
10
14
|
[elemName: string]: any;
|
|
11
15
|
}
|
|
@@ -29,7 +33,7 @@ export declare function iconAttributes(icon?: IconType): {
|
|
|
29
33
|
export declare function Label({ id, display }: {
|
|
30
34
|
id: string;
|
|
31
35
|
display: string;
|
|
32
|
-
}):
|
|
36
|
+
}): JSX.Element;
|
|
33
37
|
export declare class Hash {
|
|
34
38
|
algorithm: string;
|
|
35
39
|
value: string;
|
|
@@ -37,7 +41,7 @@ export declare class Hash {
|
|
|
37
41
|
toString(): string;
|
|
38
42
|
}
|
|
39
43
|
export declare function Nonce(): Hash;
|
|
40
|
-
type Source = Hash | string | "'self'" | "'unsafe-inline'" | "'unsafe-eval'" | "'wasm-unsafe-eval'" | "'unsafe-hashes'" | "'inline-speculation-rules'" | "'strict-dynamic'"
|
|
44
|
+
type Source = Hash | string | "'self'" | "'unsafe-inline'" | "'unsafe-eval'" | "'wasm-unsafe-eval'" | "'unsafe-hashes'" | "'inline-speculation-rules'" | "'strict-dynamic'";
|
|
41
45
|
export declare function CSP({ csp, ...others }: {
|
|
42
46
|
csp: string;
|
|
43
47
|
script?: Source;
|
|
@@ -49,5 +53,5 @@ export declare function CSP({ csp, ...others }: {
|
|
|
49
53
|
font?: Source;
|
|
50
54
|
img?: Source;
|
|
51
55
|
media?: Source;
|
|
52
|
-
}):
|
|
56
|
+
}): JSX.Element;
|
|
53
57
|
export {};
|