// Generated by typings // Source: https://raw.githubusercontent.com/typed-typings/npm-ms/f40c81c7f45bc35e970de851117c29fc959220b2/index.d.ts declare module '~debug~ms' { function ms (value: string): number; function ms (value: number, options?: ms.Options): string; module ms { export interface Options { long: boolean; } } export = ms; } // Generated by typings // Source: https://raw.githubusercontent.com/types/npm-debug/34196b8b6968197009e6725ea68b94162d5737f4/node.d.ts declare module 'debug' { import ms = require('~debug~ms'); function debug (namespace: string): debug.Debugger; namespace debug { export interface Debugger { (message: any, ...args: any[]): void; enabled: boolean; namespace: string; } export function coerce (value: any): any; export function disable (): void; export function enable (namespaces: string): void; export function enabled (namespace: string): boolean; export var humanize: typeof ms; // Node implementation exports. export var log: Function; export function formatArgs (...args: any[]): any; export function save (namespaces?: string): void; export function load (): string | void; export function useColors (): boolean; export var colors: number[]; } export = debug; }