Type representing the name of any one face of the cubes.
typeCubeFace = "front" | "right" | "back" | "left" | "top" | "bottom"// Clearer version of the type for illustration purposes for typedoc because it doesn't simplify the type.
Can be used to type your code in TypeScript. For example with useState() from React:
const [currentFace, setCurrentFace] = useState<CubeFace>('front'); // This state will only accept any of the correct face names for this parameter.
Type representing the name of any one face of the cubes.
Can be used to type your code in TypeScript. For example with useState() from React: