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 b010ab7 commit daea63fCopy full SHA for daea63f
src/column/ColumnOrder.ts
@@ -1,17 +1,5 @@
1
-type ColumnOrder =
2
- | "first"
3
- | "last"
4
- | 1
5
- | 2
6
- | 3
7
- | 4
8
- | 5
9
- | 6
10
- | 7
11
- | 8
12
- | 9
13
- | 10
14
- | 11
15
- | 12;
+import Columns from "./Columns";
+
+type ColumnOrder = "first" | "last" | Columns;
16
17
export default ColumnOrder;
src/column/ColumnSize.ts
-type ColumnSize =
- | "auto"
- | "none"
+type ColumnSize = "auto" | "none" | Columns;
export default ColumnSize;
src/column/Columns.ts
@@ -0,0 +1,3 @@
+type Columns = 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12;
+export default Columns;
0 commit comments