mirror of
https://github.com/lensapp/lens.git
synced 2025-05-20 05:10:56 +00:00
9 lines
230 B
TypeScript
9 lines
230 B
TypeScript
import { getInjectable } from "@ogre-tools/injectable";
|
|
|
|
export type LogWarning = typeof console.warn;
|
|
|
|
export const logWarningInjectable = getInjectable({
|
|
id: "log-warning",
|
|
instantiate: (di): LogWarning => console.warn,
|
|
});
|