cross-stitch - v2.0.0
    Preparing search index...

    Type Alias BackStitch

    BackStitch: ZodObject<
        {
            colorId: $ZodBranded<ZodNumber, "ColorId", "out">;
            from: ZodObject<
                {
                    x: $ZodBranded<ZodNumber, "SegmentCoordinate", "out">;
                    y: $ZodBranded<ZodNumber, "SegmentCoordinate", "out">;
                },
                $strip,
            >;
            kind: ZodLiteral<"back">;
            to: ZodObject<
                {
                    x: $ZodBranded<ZodNumber, "SegmentCoordinate", "out">;
                    y: $ZodBranded<ZodNumber, "SegmentCoordinate", "out">;
                },
                $strip,
            >;
        },
        $strip,
    >

    A back stitch: a short outline segment spanning at most one grid space in any direction.