Skip to main content
Deno 2 is finally here 🎉️
Learn more
Go to Latest
type alias EaCModuleHandlerSchema
import { type EaCModuleHandlerSchema } from "https://deno.land/x/fathym_everything_as_code@v0.1.73/src/eac/EaCModuleHandler.ts";
definition: z.infer<EaCModuleHandlerSchema>
variable EaCModuleHandlerSchema
import { EaCModuleHandlerSchema } from "https://deno.land/x/fathym_everything_as_code@v0.1.73/src/eac/EaCModuleHandler.ts";

EaCModuleHandlerSchema represents a configuration for handling a specific EaC module, including its API path and processing order. This schema ensures a consistent structure for module handlers, supporting reliable sequencing and modular API configuration within the EaC environment.

type

z.ZodObject<{ APIPath: z.ZodString; Order: z.ZodNumber; }, "strip", z.ZodTypeAny, EaCModuleHandler, EaCModuleHandler>