We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7d26ae6 commit 4651f04Copy full SHA for 4651f04
src/interface.ts
@@ -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';
+/** Two char of 't' 'b' 'c' 'l' 'r'. Example: 'lt' */
+export type AlignPoint = string;
27
28
export interface AlignType {
29
/**
0 commit comments