12 lines
275 B
TypeScript
12 lines
275 B
TypeScript
import {LoggingLevel} from './level/LoggingLevel';
|
|
|
|
export default class Defaults {
|
|
static get loggingLevel(): LoggingLevel {
|
|
return LoggingLevel.Info;
|
|
}
|
|
|
|
private constructor() {
|
|
throw new Error('Defaults is a static class that may not be instantiated');
|
|
}
|
|
}
|