Skip to content

Commit 4d9dfc0

Browse files
authoredMar 29, 2021
Add figures for fill characters (#67)
1 parent 18b0e31 commit 4d9dfc0

File tree

3 files changed

+24
-0
lines changed

3 files changed

+24
-0
lines changed
 

‎index.d.ts

+8
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,14 @@ declare const figureSet: {
55
readonly square: string;
66
readonly squareSmall: string;
77
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;
816
readonly play: string;
917
readonly circle: string;
1018
readonly circleFilled: string;

‎index.js

+8
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,14 @@ const {platform} = process;
55

66
const common = {
77
square: '█',
8+
squareDarkShade: '▓',
9+
squareMediumShade: '▒',
10+
squareLightShade: '░',
11+
squareTop: '▀',
12+
squareBottom: '▄',
13+
squareLeft: '▌',
14+
squareRight: '▐',
15+
squareCenter: '■',
816
bullet: '●',
917
dot: '․',
1018
line: '─',

‎readme.md

+8
Original file line numberDiff line numberDiff line change
@@ -71,6 +71,14 @@ Symbols to use when running on Windows.
7171
| square | `` | |
7272
| squareSmall | `` | `` |
7373
| squareSmallFilled | `` | `` |
74+
| squareDarkShade | `` | |
75+
| squareMediumShade | `` | |
76+
| squareLightShade | `` | |
77+
| squareTop | `` | |
78+
| squareBottom | `` | |
79+
| squareLeft | `` | |
80+
| squareRight | `` | |
81+
| squareCenter | `` | |
7482
| play | `` | `` |
7583
| circle | `` | `( )` |
7684
| circleFilled | `` | `(*)` |

0 commit comments

Comments
 (0)
Please sign in to comment.