@spotlightjs/overlay 2.5.1 → 2.5.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.
@@ -1,5 +1,12 @@
1
1
  import ConsoleTab from './console-tab';
2
- import { ConsoleMessage } from './types';
2
+ import type { ConsoleMessage } from './types';
3
+ /**
4
+ * This integration is meant to run on the same page where
5
+ * the Spotlight UI is running. For standalone UI cases such
6
+ * as the Electron app, we should publish a separate version
7
+ * that takes in the sidecar URL.
8
+ * @returns Integration Console integration for Spotlight
9
+ */
3
10
  export default function consoleIntegration(): {
4
11
  name: string;
5
12
  forwardedContentType: string[];
@@ -1,3 +1,4 @@
1
+ export declare const SPOTLIGHT_PREFIX = "\uD83D\uDD0E [Spotlight]";
1
2
  export declare function activateLogger(): void;
2
3
  export declare function deactivateLogger(): void;
3
4
  export declare function log(...args: unknown[]): void;