@k8slens/extensions 5.4.1-git.b08daa811d.0 → 5.4.1-git.c12f7dfa8f.0
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/src/common/utils/tuple.d.ts +4 -0
- package/dist/src/extensions/extension-api.js +15 -26
- package/dist/src/renderer/components/dock/__test__/dock-store.test.d.ts +5 -0
- package/dist/src/renderer/components/dock/dock/store.d.ts +1 -0
- package/dist/src/renderer/components/dock/dock-tab.d.ts +0 -1
- package/dist/src/renderer/components/switch/switcher.d.ts +1 -1
- package/dist/src/renderer/hooks/index.d.ts +1 -0
- package/dist/src/renderer/hooks/useResizeObserver.d.ts +5 -0
- package/package.json +1 -1
|
@@ -21,4 +21,8 @@ export declare function zip<T, N extends number>(...sources: Tuple<T[], N>): Ite
|
|
|
21
21
|
* @param value The value for each of the tuple entries
|
|
22
22
|
*/
|
|
23
23
|
export declare function filled<T, L extends number>(length: L, value: T): Tuple<T, L>;
|
|
24
|
+
/**
|
|
25
|
+
* A function for converting an explicit array to a tuple but without the `readonly` typing
|
|
26
|
+
*/
|
|
27
|
+
export declare function from<T extends any[]>(...args: T): [...T];
|
|
24
28
|
export {};
|