interface AlgCubingNetOptions {
    alg?: Alg;
    puzzle?:
        | "1x1x1"
        | "2x2x2"
        | "3x3x3"
        | "4x4x4"
        | "5x5x5"
        | "6x6x6"
        | "7x7x7"
        | "8x8x8"
        | "9x9x9"
        | "10x10x10"
        | "11x11x11"
        | "12x12x12"
        | "13x13x13"
        | "14x14x14"
        | "16x16x16"
        | "17x17x17";
    setup?: Alg;
    stage?:
        | "full"
        | "cross"
        | "F2L"
        | "LL"
        | "OLL"
        | "PLL"
        | "CLS"
        | "ELS"
        | "L6E"
        | "CMLL"
        | "WV"
        | "ZBLL"
        | "void";
    title?: string;
    type?:
        | "moves"
        | "reconstruction"
        | "alg"
        | "reconstruction-end-with-setup";
    view?: "playback" | "fullscreen" | "editor";
}

Properties

alg?: Alg
puzzle?:
    | "1x1x1"
    | "2x2x2"
    | "3x3x3"
    | "4x4x4"
    | "5x5x5"
    | "6x6x6"
    | "7x7x7"
    | "8x8x8"
    | "9x9x9"
    | "10x10x10"
    | "11x11x11"
    | "12x12x12"
    | "13x13x13"
    | "14x14x14"
    | "16x16x16"
    | "17x17x17"
setup?: Alg
stage?:
    | "full"
    | "cross"
    | "F2L"
    | "LL"
    | "OLL"
    | "PLL"
    | "CLS"
    | "ELS"
    | "L6E"
    | "CMLL"
    | "WV"
    | "ZBLL"
    | "void"
title?: string
type?:
    | "moves"
    | "reconstruction"
    | "alg"
    | "reconstruction-end-with-setup"
view?: "playback" | "fullscreen" | "editor"