/** @packageDocumentation * @module OrbitGT */ /** * Class Message prints debug, information, warning and error messages to the console. */ /** @internal */ export declare class Message { /** Disabled by default, enable to see all messages */ static DISPLAY: boolean; private constructor(); static log(message: string): void; static print(module: string, message: string): void; static printWarning(module: string, message: string): void; static printError(module: string, exception: any, message: string): void; } //# sourceMappingURL=Message.d.ts.map