UNPKG

ts-auto-mock

Version:

Typescript transformer to unlock automatic mock creation for interfaces and classes

4 lines (3 loc) 196 B
import { ILogger } from './logger.interface'; export type MessageFormatter = (service: string, level: string, message: string) => string; export declare function Logger(service: string): ILogger;