declare module 'probe.gl' {
class Log {
constructor(options: { id: string });
enable(enabled?: boolean): Log;
warn(message: string): () => any;
info(message: string): () => any;
error(message: string): () => any;
}
/// <reference path="../../../node_modules/eventemitter3/index.d.ts" />