UNPKG

arvo-core

Version:

The core Arvo package which provides application tier core primitives and contract system for building production-grade event-driven application. Provides ArvoEvent (CloudEvents-compliant), ArvoContract for type-safe service interfaces, event factories, O

11 lines (10 loc) 246 B
import { z } from 'zod'; export declare const ArvoContractValidators: { contract: { uri: z.ZodEffects<z.ZodString, string, string>; domain: z.ZodNullable<z.ZodString>; }; record: { type: z.ZodString; }; };