Skip to content

Commit 4651f04

Browse files
committed
chore: Fallback points define to string
1 parent 7d26ae6 commit 4651f04

File tree

1 file changed

+2
-26
lines changed

1 file changed

+2
-26
lines changed

src/interface.ts

Lines changed: 2 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -1,29 +1,5 @@
1-
export type AlignPoint =
2-
| 'tt'
3-
| 'tb'
4-
| 'tc'
5-
| 'tl'
6-
| 'tr'
7-
| 'bt'
8-
| 'bb'
9-
| 'bc'
10-
| 'bl'
11-
| 'br'
12-
| 'ct'
13-
| 'cb'
14-
| 'cc'
15-
| 'cl'
16-
| 'cr'
17-
| 'lt'
18-
| 'lb'
19-
| 'lc'
20-
| 'll'
21-
| 'lr'
22-
| 'rt'
23-
| 'rb'
24-
| 'rc'
25-
| 'rl'
26-
| 'rr';
1+
/** Two char of 't' 'b' 'c' 'l' 'r'. Example: 'lt' */
2+
export type AlignPoint = string;
273

284
export interface AlignType {
295
/**

0 commit comments

Comments
 (0)