window.kaolin
    Preparing search index...

    Variable SvgAssetSchemaConst

    SvgAssetSchema: ZodObject<
        {
            elements: ZodArray<
                ZodObject<
                    {
                        name: ZodEnum<
                            {
                                circle: "circle";
                                ellipse: "ellipse";
                                line: "line";
                                path: "path";
                                polygon: "polygon";
                                polyline: "polyline";
                                rect: "rect";
                                text: "text";
                            },
                        >;
                        options: ZodOptional<ZodRecord<ZodString, ZodString>>;
                    },
                    $strip,
                >,
            >;
            scale: ZodOptional<ZodDefault<ZodNumber>>;
        },
        $strip,
    > = ...

    Schema for an asset: one or more SVG primitives grouped together with an optional uniform scale.