1
0
mirror of https://github.com/lensapp/lens.git synced 2025-05-20 05:10:56 +00:00

Tweak typing

Co-authored-by: Mikko Aspiala <mikko.aspiala@gmail.com>

Signed-off-by: Janne Savolainen <janne.savolainen@live.fi>
This commit is contained in:
Janne Savolainen 2022-05-05 09:02:43 +03:00
parent 96b5771b08
commit 0f067da6f4
No known key found for this signature in database
GPG Key ID: 8C6CFB2FFFE8F68A
2 changed files with 4 additions and 4 deletions

View File

@ -27,9 +27,9 @@ interface PrometheusServicePreferences {
} }
interface Dependencies { interface Dependencies {
createKubeAuthProxy: CreateKubeAuthProxy; readonly createKubeAuthProxy: CreateKubeAuthProxy;
authProxyCa: string; readonly authProxyCa: string;
prometheusProviderRegistry: PrometheusProviderRegistry; readonly prometheusProviderRegistry: PrometheusProviderRegistry;
} }
export class ContextHandler { export class ContextHandler {

View File

@ -8,7 +8,7 @@ import type { ClusterFrameInfo } from "../../../../common/cluster-frames";
export interface SendToViewArgs { export interface SendToViewArgs {
channel: string; channel: string;
frameInfo?: ClusterFrameInfo; frameInfo?: ClusterFrameInfo;
data?: any[]; data?: unknown[];
} }
export interface LensWindow { export interface LensWindow {