mirror of https://gitee.com/antv-l7/antv-l7
15 lines
397 B
TypeScript
15 lines
397 B
TypeScript
declare module 'probe.gl' {
|
|
class Log {
|
|
constructor(options: { id: string });
|
|
|
|
priority: number;
|
|
enable(enabled?: boolean): Log;
|
|
|
|
debug(priority: number, message: string): () => any;
|
|
info(priority: number, message: string): () => any;
|
|
warn(message: string): () => any;
|
|
error(message: string): () => any;
|
|
probe(priority: number, message: string): () => any;
|
|
}
|
|
}
|