File tree 3 files changed +24
-0
lines changed
3 files changed +24
-0
lines changed Original file line number Diff line number Diff line change @@ -5,6 +5,14 @@ declare const figureSet: {
5
5
readonly square : string ;
6
6
readonly squareSmall : string ;
7
7
readonly squareSmallFilled : string ;
8
+ readonly squareDarkShade : string ;
9
+ readonly squareMediumShade : string ;
10
+ readonly squareLightShade : string ;
11
+ readonly squareTop : string ;
12
+ readonly squareBottom : string ;
13
+ readonly squareLeft : string ;
14
+ readonly squareRight : string ;
15
+ readonly squareCenter : string ;
8
16
readonly play : string ;
9
17
readonly circle : string ;
10
18
readonly circleFilled : string ;
Original file line number Diff line number Diff line change @@ -5,6 +5,14 @@ const {platform} = process;
5
5
6
6
const common = {
7
7
square : '█' ,
8
+ squareDarkShade : '▓' ,
9
+ squareMediumShade : '▒' ,
10
+ squareLightShade : '░' ,
11
+ squareTop : '▀' ,
12
+ squareBottom : '▄' ,
13
+ squareLeft : '▌' ,
14
+ squareRight : '▐' ,
15
+ squareCenter : '■' ,
8
16
bullet : '●' ,
9
17
dot : '․' ,
10
18
line : '─' ,
Original file line number Diff line number Diff line change @@ -71,6 +71,14 @@ Symbols to use when running on Windows.
71
71
| square | ` █ ` | |
72
72
| squareSmall | ` ◻ ` | ` □ ` |
73
73
| squareSmallFilled | ` ◼ ` | ` ■ ` |
74
+ | squareDarkShade | ` ▓ ` | |
75
+ | squareMediumShade | ` ▒ ` | |
76
+ | squareLightShade | ` ░ ` | |
77
+ | squareTop | ` ▀ ` | |
78
+ | squareBottom | ` ▄ ` | |
79
+ | squareLeft | ` ▌ ` | |
80
+ | squareRight | ` ▐ ` | |
81
+ | squareCenter | ` ■ ` | |
74
82
| play | ` ▶ ` | ` ► ` |
75
83
| circle | ` ◯ ` | ` ( ) ` |
76
84
| circleFilled | ` ◉ ` | ` (*) ` |
You can’t perform that action at this time.
0 commit comments