Repository URL to install this package:
|
Version:
0.8.1 ▾
|
// (c) Copyright 2023 Supertenant Ltd. - all rights reserved.
// See LICENSE file in project root for license terms.
export namespace BrainLogLevel {
const Debug: number;
const Error: number;
const Fatal: number;
const Info: number;
const Trace: number;
const Warn: number;
}
export type BrainLogLevel = number;
declare namespace _default {
import BrainLogLevel = BrainLogLevel;
export { BrainLogLevel };
}
export default _default;