mirror of
https://github.com/lensapp/lens.git
synced 2025-05-20 05:10:56 +00:00
18 lines
427 B
TypeScript
18 lines
427 B
TypeScript
import { getInjectable } from "@ogre-tools/injectable";
|
|
import type { TabId } from "./store";
|
|
import dockStoreInjectable from "./store.injectable";
|
|
|
|
const closeDockTabInjectable = getInjectable({
|
|
id: "close-dock-tab",
|
|
|
|
instantiate: (di) => {
|
|
const dockStore = di.inject(dockStoreInjectable);
|
|
|
|
return (tabId: TabId): void => {
|
|
dockStore.closeTab(tabId);
|
|
};
|
|
},
|
|
});
|
|
|
|
export default closeDockTabInjectable;
|