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

    Type Alias LongStitch

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

    A long stitch: a segment spanning more than one grid space, in any direction.