IMPROVE typing of client-logger

This commit is contained in:
Norbert de Langen 2020-03-18 20:29:29 +01:00
parent 66b7fe8401
commit b906a2a1e1
No known key found for this signature in database
GPG Key ID: 976651DA156C2825

View File

@ -10,7 +10,7 @@ export const logger = {
error: (message: any, ...rest: any[]): void => console.error(message, ...rest),
};
export const pretty = (type: 'debug') => (...args: string[]) => {
export const pretty = (type: keyof typeof logger) => (...args: string[]) => {
const argArray = [];
if (args.length) {