/**
 * @module Logger
 *
 * Represents the possible debugging levels.
 *
 */
export type Type = 0 | 1 | 2;
export type { Type as default };
