@k8slens/extensions 6.2.0-git.9ed64a29df.0 → 6.2.0-git.a89eb486d8.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.
@@ -0,0 +1,2 @@
1
+ declare const directoryForLogsInjectable: import("@ogre-tools/injectable").Injectable<string, unknown, void>;
2
+ export default directoryForLogsInjectable;
@@ -4,4 +4,3 @@
4
4
  */
5
5
  export * from "./ipc";
6
6
  export * from "./invalid-kubeconfig";
7
- export * from "./type-enforced-ipc";
@@ -0,0 +1,6 @@
1
+ /**
2
+ * Copyright (c) OpenLens Authors. All rights reserved.
3
+ * Licensed under MIT License. See LICENSE in root directory for more information.
4
+ */
5
+ import type TransportStream from "winston-transport";
6
+ export declare const loggerTransportInjectionToken: import("@ogre-tools/injectable").InjectionToken<TransportStream, void>;
@@ -9,5 +9,8 @@ export interface Logger {
9
9
  warn: (message: string, ...args: any) => void;
10
10
  silly: (message: string, ...args: any) => void;
11
11
  }
12
+ /**
13
+ * @deprecated use `di.inject(loggerInjectable)` instead
14
+ */
12
15
  declare const _default: Logger;
13
16
  export default _default;