rbx-scrambler
Version:
A puzzle scrambler in Javascript
15 lines (14 loc) • 350 B
TypeScript
declare enum PUZZLE_TYPES {
'2x2' = "2x2",
'3x3' = "3x3",
'4x4' = "4x4",
'5x5' = "5x5",
'6x6' = "6x6",
'7x7' = "7x7",
'Square-1' = "Square-1",
'Pyraminx' = "Pyraminx",
'Clock' = "Clock",
'Megaminx' = "Megaminx"
}
export declare const getScramble: (puzzleType: PUZZLE_TYPES) => string;
export {};