export interface LoggerLike { info(message: string): void; error(message: string): void; } export interface CronJobLike { [x: string]: any; } export interface ObjectAny { [x: string]: any; } export type DateType = Date | string;