mirror of https://gitee.com/antv-l7/antv-l7
14 lines
316 B
TypeScript
14 lines
316 B
TypeScript
|
|
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" />
|