Variable CompletedTutorialsSchemaConst
CompletedTutorialsSchema: ZodObject<
{
flightCompleted: ZodDefault<ZodBoolean>;
fuelScoopingCompleted: ZodDefault<ZodBoolean>;
starMapCompleted: ZodDefault<ZodBoolean>;
stationLandingCompleted: ZodDefault<ZodBoolean>;
},
"strip",
ZodTypeAny,
{
flightCompleted: boolean;
fuelScoopingCompleted: boolean;
starMapCompleted: boolean;
stationLandingCompleted: boolean;
},
{
flightCompleted?: boolean;
fuelScoopingCompleted?: boolean;
starMapCompleted?: boolean;
stationLandingCompleted?: boolean;
},
> = ...