diff --git a/src/cubing/alg/index.ts b/src/cubing/alg/index.ts index fb843d7ba..0c45e8465 100644 --- a/src/cubing/alg/index.ts +++ b/src/cubing/alg/index.ts @@ -1,3 +1,11 @@ +/** + * For a walkthrough, see: + * + * https://js.cubing.net/cubing/alg/ + * + * @packageDocumentation + */ + export { Alg } from "./Alg"; export { AlgBuilder } from "./AlgBuilder"; export { TraversalDownUp, TraversalUp } from "./traversal"; diff --git a/src/cubing/scramble/index.ts b/src/cubing/scramble/index.ts index e8c11a057..20f3527fa 100644 --- a/src/cubing/scramble/index.ts +++ b/src/cubing/scramble/index.ts @@ -1 +1,9 @@ +/** + * For a walkthrough, see: + * + * https://js.cubing.net/cubing/scramble/ + * + * @packageDocumentation + */ + export { randomScrambleForEvent } from "../search/cubing-private"; diff --git a/src/cubing/twisty/index.ts b/src/cubing/twisty/index.ts index 9831f23fe..28fe35cfc 100644 --- a/src/cubing/twisty/index.ts +++ b/src/cubing/twisty/index.ts @@ -1,3 +1,11 @@ +/** + * For a walkthrough, see: + * + * https://js.cubing.net/cubing/twisty/ + * + * @packageDocumentation + */ + export { TwistyPlayer } from "./views/TwistyPlayer"; export { TwistyAlgViewer } from "./views/TwistyAlgViewer"; export { TwistyAlgEditor } from "./views/TwistyAlgEditor/TwistyAlgEditor";