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