Skip to content

Commit 7607495

Browse files
committed
chore: Docs for Severity
1 parent 850c316 commit 7607495

File tree

1 file changed

+27
-13
lines changed

1 file changed

+27
-13
lines changed

packages/types/src/severity.ts

Lines changed: 27 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,33 @@
1-
/** JSDoc */
2-
// eslint-disable-next-line import/export
1+
/**
2+
* Levels are used in the UI to emphasize and deemphasize the crumb.
3+
*/
34
export enum Severity {
4-
/** JSDoc */
5-
Fatal = 'fatal',
6-
/** JSDoc */
7-
Error = 'error',
8-
/** JSDoc */
5+
/**
6+
* Debug level.
7+
*/
8+
Debug = 'debug',
9+
10+
/**
11+
* Info level.
12+
*/
13+
Info = 'info',
14+
15+
/**
16+
* Warning level.
17+
*/
918
Warning = 'warning',
10-
/** JSDoc */
19+
20+
/**
21+
* Error level.
22+
*/
23+
Error = 'error',
24+
25+
/**
26+
* Fatal level.
27+
*/
28+
Fatal = 'fatal',
29+
1130
Log = 'log',
12-
/** JSDoc */
13-
Info = 'info',
14-
/** JSDoc */
15-
Debug = 'debug',
16-
/** JSDoc */
1731
Critical = 'critical',
1832
}
1933

0 commit comments

Comments
 (0)