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

Add Common.K8sApi.KubeObject

Signed-off-by: Hung-Han (Henry) Chen <chenhungh@gmail.com>
This commit is contained in:
Hung-Han (Henry) Chen 2021-11-16 13:34:18 +02:00
parent 385de469ad
commit 325a737799
No known key found for this signature in database
GPG Key ID: 54B44603D251B788

View File

@ -27,6 +27,9 @@ import * as Util from "./utils";
import * as Catalog from "./catalog"; import * as Catalog from "./catalog";
import * as Types from "./types"; import * as Types from "./types";
import logger from "../../common/logger"; import logger from "../../common/logger";
import { KubeObject } from "../../common/k8s-api/kube-object";
const K8sApi = { KubeObject };
export { export {
App, App,
@ -35,5 +38,6 @@ export {
Store, Store,
Types, Types,
Util, Util,
K8sApi,
logger, logger,
}; };