mirror of
https://github.com/lensapp/lens.git
synced 2025-05-20 05:10:56 +00:00
19 lines
616 B
TypeScript
19 lines
616 B
TypeScript
import { getInjectable } from "@ogre-tools/injectable";
|
|
import type { DockTabStoreOptions } from "./dock-tab.store";
|
|
import { DockTabStore } from "./dock-tab.store";
|
|
import createStorageInjectable from "../../../utils/create-storage/create-storage.injectable";
|
|
|
|
const createDockTabStoreInjectable = getInjectable({
|
|
id: "create-dock-tab-store",
|
|
|
|
instantiate: (di) => {
|
|
const dependencies = {
|
|
createStorage: di.inject(createStorageInjectable),
|
|
};
|
|
|
|
return <T>(options: DockTabStoreOptions = {}) => new DockTabStore<T>(dependencies, options);
|
|
},
|
|
});
|
|
|
|
export default createDockTabStoreInjectable;
|