Initial portage to TypeScript.
[e-mobility-charging-stations-simulator.git] / flow-typed / npm / winston_v3.x.x.js
diff --git a/flow-typed/npm/winston_v3.x.x.js b/flow-typed/npm/winston_v3.x.x.js
deleted file mode 100644 (file)
index a92d2cb..0000000
+++ /dev/null
@@ -1,156 +0,0 @@
-// flow-typed signature: 71d87edbd93b4e1027b7e590a8e97a21
-// flow-typed version: 097f6f2b81/winston_v3.x.x/flow_>=v0.104.x
-
-declare type $winstonLevels = { [string]: number, ... };
-
-declare type $winstonNpmLogLevels = {
-  error: number,
-  warn: number,
-  info: number,
-  verbose: number,
-  debug: number,
-  silly: number,
-  ...
-};
-
-declare type $winstonInfo<T: $winstonLevels> = {
-  [optionName: string]: mixed,
-  level: $Keys<T>,
-  message: string,
-  ...
-};
-
-declare type $winstonFormat = Object;
-
-declare type $winstonFileTransportConfig<T: $winstonLevels> = {
-  filename: string,
-  level?: $Keys<T>,
-  ...
-};
-
-declare class $winstonTransport {
-  level?: string;
-  silent?: boolean;
-}
-
-declare class $winstonFileTransport<T> extends $winstonTransport {
-  constructor($winstonFileTransportConfig<T>): $winstonFileTransport<T>;
-}
-
-declare type $winstonConsoleTransportConfig<T: $winstonLevels> = { level?: $Keys<T>, ... };
-
-declare class $winstonConsoleTransport<T> extends $winstonTransport {
-  constructor(
-    config?: $winstonConsoleTransportConfig<T>
-  ): $winstonConsoleTransport<T>;
-}
-
-declare type $winstonLoggerConfig<T: $winstonLevels> = {
-  exitOnError?: boolean,
-  format?: $winstonFormat,
-  level?: $Keys<T>,
-  levels?: T,
-  transports?: Array<$winstonTransport>,
-  ...
-};
-
-declare type $winstonLogger<T: $winstonLevels> = {
-  [$Keys<T>]: (message: string, meta?: Object) => $winstonLogger<T>,
-  add: $winstonTransport => $winstonLogger<T>,
-  remove: $winstonTransport => $winstonLogger<T>,
-  clear: () => $winstonLogger<T>,
-  close: () => $winstonLogger<T>,
-  configure: ($winstonLoggerConfig<T>) => void,
-  log: (message: $winstonInfo<T>) => $winstonLogger<T>,
-  startTimer: () => $winstonProfiler<T>,
-  profile: (name: string, info?: $Shape<$winstonInfo<T>>) => void,
-  ...
-};
-
-declare type $winstonConfigSubModule = { npm: () => $winstonNpmLogLevels, ... };
-
-declare type $winstonFormatJsonOptions = {
-  replacer?: (key: string, value: mixed) => mixed,
-  space?: number,
-  stable?: boolean,
-  ...
-};
-
-declare type $winstonFormatPrettyPrintOptions = {|
-  depth?: number,
-  colorize?: boolean,
-|};
-
-declare type $winstonFormatErrorsOptions = {|
-  stack?: boolean,
-|};
-
-declare type $winstonFormatSubModule = {
-  <T: $winstonLevels>((info: $winstonInfo<T>) => $winstonInfo<T>): () => $winstonFormat,
-  combine: (...args: Array<$winstonFormat>) => $winstonFormat,
-  json: (options?: $winstonFormatJsonOptions) => $winstonFormat,
-  label: (config?: Object) => $winstonFormat,
-  metadata: () => $winstonFormat,
-  prettyPrint: (options?: $winstonFormatPrettyPrintOptions) => $winstonFormat,
-  simple: () => $winstonFormat,
-  splat: () => $winstonFormat,
-  timestamp: (?{
-    alias?: string,
-    format?: string | () => string,
-    ...
-  }) => $winstonFormat,
-  colorize: () => $winstonFormat,
-  logstash: () => $winstonFormat,
-  printf: ((args: $winstonInfo<Object>) => string) => $winstonFormat,
-  errors: (options?: $winstonFormatErrorsOptions) => $winstonFormat,
-  ...
-};
-
-declare type $winstonDefaultLogger = $winstonLogger<$winstonNpmLogLevels>;
-
-declare class $winstonContainer<T> {
-  constructor(config?: $winstonLoggerConfig<T>): $winstonContainer<T>;
-  add(loggerId: string, config?: $winstonLoggerConfig<T>): $winstonLogger<T>;
-  get(loggerId: string): $winstonLogger<T>;
-  has(loggerId: string): boolean;
-  close(loggerId?: string): void;
-}
-
-declare interface $winstonProfiler<T: $winstonNpmLogLevels> {
-  logger: $winstonLogger<T>;
-  start: Date;
-  done(info?: $Shape<$winstonInfo<T>>): void;
-};
-
-declare module "winston" {
-  declare export type Levels = $winstonLevels;
-  declare export type NpmLogLevels = $winstonNpmLogLevels;
-  declare export type Info<T: Levels > = $winstonInfo<T>;
-  declare export type Format = $winstonFormat;
-  declare export type FileTransportConfig<T: Levels> = $winstonFileTransportConfig<T>;
-  declare export type Transport = $winstonTransport;
-  declare export type FileTransport<T: Levels> = $winstonFileTransport<T>;
-  declare export type ConsoleTransportConfig<T: Levels> = $winstonConsoleTransportConfig<T>;
-  declare export type ConsoleTransport<T: Levels> = $winstonConsoleTransport<T>;
-  declare export type LoggerConfig<T: Levels> = $winstonLoggerConfig<T>;
-  declare export type Logger<T: Levels> = $winstonLogger<T>;
-  declare export type ConfigSubModule = $winstonConfigSubModule;
-  declare export type FormatSubModule = $winstonFormatSubModule;
-  declare export type DefaultLogger = $winstonDefaultLogger;
-  declare export type Container<T: Levels> = $winstonContainer<T>;
-  declare export type Profiler<T: Levels> = $winstonProfiler<T>;
-
-  declare module.exports: {
-    ...$Exact<$winstonDefaultLogger>,
-    format: $winstonFormatSubModule,
-    transports: {
-      Console: typeof $winstonConsoleTransport,
-      File: typeof $winstonFileTransport,
-      ...
-    },
-    createLogger: <T>($winstonLoggerConfig<T>) => $winstonLogger<T>,
-    Container: typeof $winstonContainer,
-    loggers: $winstonContainer<*>,
-    ...
-  };
-}