Variable TransitionDataSchemaConst

TransitionDataSchema: Zod.z.ZodObject<
    {
        id: Zod.z.ZodString;
        inputTextures: Zod.z.ZodOptional<
            Zod.z.ZodArray<
                Zod.z.ZodObject<
                    {
                        mipmap: Zod.z.ZodOptional<
                            Zod.z.ZodNativeEnum<typeof InputTextureMipmapMode>,
                        >;
                        name: Zod.z.ZodString;
                        scaleMode: Zod.z.ZodOptional<
                            Zod.z.ZodNativeEnum<typeof InputTextureScaleMode>,
                        >;
                        url: Zod.z.ZodString;
                        wrapMode: Zod.z.ZodOptional<
                            Zod.z.ZodNativeEnum<typeof InputTextureWrapMode>,
                        >;
                    },
                    "strip",
                    Zod.z.ZodTypeAny,
                    {
                        mipmap?: OFF
                        | ON;
                        name: string;
                        scaleMode?: NEAREST | LINEAR;
                        url: string;
                        wrapMode?: CLAMP | REPEAT | MIRRORED_REPEAT;
                    },
                    {
                        mipmap?: OFF
                        | ON;
                        name: string;
                        scaleMode?: NEAREST | LINEAR;
                        url: string;
                        wrapMode?: CLAMP | REPEAT | MIRRORED_REPEAT;
                    },
                >,
                "many",
            >,
        >;
        name: Zod.z.ZodString;
        properties: Zod.z.ZodArray<
            Zod.z.ZodObject<
                {
                    defaultValue: Zod.z.ZodType<
                        Required<any>,
                        Zod.z.ZodTypeDef,
                        Required<any>,
                    >;
                    description: Zod.z.ZodOptional<Zod.z.ZodString>;
                    label: Zod.z.ZodOptional<Zod.z.ZodString>;
                    name: Zod.z.ZodString;
                    type: Zod.z.ZodNativeEnum<typeof PropertyDescriptionTypeEnum>;
                },
                "strip",
                Zod.z.ZodTypeAny,
                {
                    defaultValue: Required<any>;
                    description?: string;
                    label?: string;
                    name: string;
                    type: PropertyDescriptionTypeEnum;
                },
                {
                    defaultValue: Required<any>;
                    description?: string;
                    label?: string;
                    name: string;
                    type: PropertyDescriptionTypeEnum;
                },
            >,
            "many",
        >;
        provider: Zod.z.ZodString;
        transitionSrc: Zod.z.ZodString;
    },
    "strip",
    Zod.z.ZodTypeAny,
    {
        id: string;
        inputTextures?: {
            mipmap?: OFF
            | ON;
            name: string;
            scaleMode?: NEAREST | LINEAR;
            url: string;
            wrapMode?: CLAMP | REPEAT | MIRRORED_REPEAT;
        }[];
        name: string;
        properties: {
            defaultValue: Required<any>;
            description?: string;
            label?: string;
            name: string;
            type: PropertyDescriptionTypeEnum;
        }[];
        provider: string;
        transitionSrc: string;
    },
    {
        id: string;
        inputTextures?: {
            mipmap?: OFF
            | ON;
            name: string;
            scaleMode?: NEAREST | LINEAR;
            url: string;
            wrapMode?: CLAMP | REPEAT | MIRRORED_REPEAT;
        }[];
        name: string;
        properties: {
            defaultValue: Required<any>;
            description?: string;
            label?: string;
            name: string;
            type: PropertyDescriptionTypeEnum;
        }[];
        provider: string;
        transitionSrc: string;
    },
> = ...