UNPKG

@snipsonian/core

Version:

Core/base reusable javascript code snippets

6 lines (5 loc) 161 B
export interface IGroupLogger { startLog: (groupTitle: string) => void; log: (message: any, ...optionalParams: any[]) => void; endLog: () => void; }