File tree 2 files changed +4
-2
lines changed
2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ import type { Newline } from "./leaves/Newline";
7
7
import type { Pause } from "./leaves/Pause" ;
8
8
9
9
export type AlgLeaf = Move | LineComment | Newline | Pause ;
10
- export type AlgContainer = Grouping | Conjugate | Commutator ;
10
+ export type AlgBranch = Grouping | Conjugate | Commutator ;
11
11
12
12
/** @category Alg */
13
- export type AlgNode = AlgLeaf | AlgContainer ;
13
+ export type AlgNode = AlgLeaf | AlgBranch ;
Original file line number Diff line number Diff line change @@ -14,6 +14,8 @@ export { keyToMove } from "./keyboard";
14
14
export * from "./alg-nodes" ;
15
15
export type { MoveModifications } from "./alg-nodes/leaves/Move" ;
16
16
17
+ export type { AlgLeaf , AlgBranch , AlgNode } from "./alg-nodes/AlgNode" ;
18
+
17
19
export { experimentalAlgCubingNetLink } from "./url" ;
18
20
export type { AlgCubingNetOptions } from "./url" ;
19
21
You can’t perform that action at this time.
0 commit comments