@foxglove/extension 2.48.1 → 2.48.2
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/package.json +1 -1
- package/src/experimental.ts +2 -2
- package/src/index.ts +3 -3
- package/src/stable.ts +1 -1
package/package.json
CHANGED
package/src/experimental.ts
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
/* eslint-disable @typescript-eslint/no-namespace */
|
|
2
|
-
import type { Immutable } from "./immutable
|
|
2
|
+
import type { Immutable } from "./immutable";
|
|
3
3
|
import type {
|
|
4
4
|
ExtensionContext as BaseExtensionContext,
|
|
5
5
|
PanelExtensionContext as BasePanelExtensionContext,
|
|
6
|
-
} from "./stable
|
|
6
|
+
} from "./stable";
|
|
7
7
|
|
|
8
8
|
/**
|
|
9
9
|
* The experimental namespace contains experimental APIs that are not yet stable and WILL change or
|
package/src/index.ts
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
export * from "./stable
|
|
2
|
-
export type { Immutable } from "./immutable
|
|
3
|
-
export type { Experimental } from "./experimental
|
|
1
|
+
export * from "./stable";
|
|
2
|
+
export type { Immutable } from "./immutable";
|
|
3
|
+
export type { Experimental } from "./experimental";
|
package/src/stable.ts
CHANGED