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

Add missing ;

Signed-off-by: Hung-Han (Henry) Chen <chenhungh@gmail.com>
This commit is contained in:
Hung-Han (Henry) Chen 2021-10-04 16:05:12 +03:00
parent cfdb4c93c1
commit a9e6d8b7a0
No known key found for this signature in database
GPG Key ID: 54B44603D251B788

View File

@ -27,7 +27,7 @@ import type { Cluster } from "../../main/cluster";
import { ClusterStore } from "../../common/cluster-store";
import { Disposer, iter } from "../utils";
import { once } from "lodash";
import type { CatalogEntityItem } from "../../renderer/components/+catalog/catalog-entity-item"
import type { CatalogEntityItem } from "../../renderer/components/+catalog/catalog-entity-item";
export type EntityFilter = (entity: CatalogEntity) => any;
export type CatelogEntityOnRunHook = (entity: CatalogEntity | CatalogEntityItem<CatalogEntity>) => boolean | Promise<boolean>;