@glowlabs-org/events-sdk
Version:
Typed event SDK for Glow, powered by RabbitMQ and Zod.
16 lines (15 loc) • 563 B
TypeScript
import { z } from "zod";
export declare const auditPushedV2AlphaPayloadZ: z.ZodObject<{
applicationId: z.ZodString;
expectedProduction_12Decimals: z.ZodString;
protocolFeeUSDPrice_6Decimals: z.ZodString;
}, "strip", z.ZodTypeAny, {
protocolFeeUSDPrice_6Decimals: string;
expectedProduction_12Decimals: string;
applicationId: string;
}, {
protocolFeeUSDPrice_6Decimals: string;
expectedProduction_12Decimals: string;
applicationId: string;
}>;
export type AuditPushedV2AlphaPayload = z.infer<typeof auditPushedV2AlphaPayloadZ>;