UNPKG

@snipsonian/core

Version:

Core/base reusable javascript code snippets

7 lines (6 loc) 228 B
export interface IGroupLogger { startLog: (groupTitle: string) => void; // eslint-disable-next-line @typescript-eslint/no-explicit-any log: (message: any, ...optionalParams: any[]) => void; endLog: () => void; }