mirror of
https://github.com/lensapp/lens.git
synced 2025-05-20 05:10:56 +00:00
Co-authored-by: Janne Savolainen <janne.savolainen@live.fi> Signed-off-by: Iku-turso <mikko.aspiala@gmail.com> Signed-off-by: Janne Savolainen <janne.savolainen@live.fi>
9 lines
228 B
TypeScript
9 lines
228 B
TypeScript
import { getInjectable } from "@ogre-tools/injectable";
|
|
|
|
export type LogSuccess = typeof console.log;
|
|
|
|
export const logSuccessInjectable = getInjectable({
|
|
id: "log-success",
|
|
instantiate: (di): LogSuccess => console.log,
|
|
});
|