| 1 | import { Payload, Plugin } from "./index"; |
| 2 | |
| 3 | interface Logger extends Partial<Pick<Console, 'groupCollapsed' | 'group' | 'groupEnd'>> { |
| 4 | log(message: string, color: string, payload: any): void; |
| 5 | log(message: string): void; |
| 6 | } |
| 7 | |
| 8 | export interface LoggerOption<S> { |
| 9 | collapsed?: boolean; |
no outgoing calls
no test coverage detected
searching dependent graphs…