Variable EffectSchemaConst

EffectSchema: Zod.z.ZodObject<
    {
        effectId: Zod.z.ZodString;
        id: Zod.z.ZodString;
        properties: Zod.z.ZodArray<
            Zod.z.ZodTuple<[Zod.z.ZodString, Zod.z.ZodAny], null>,
            "many",
        >;
        provider: Zod.z.ZodString;
    },
    "strip",
    Zod.z.ZodTypeAny,
    {
        effectId: string;
        id: string;
        properties: [string, any][];
        provider: string;
    },
    {
        effectId: string;
        id: string;
        properties: [string, any][];
        provider: string;
    },
> = ...