UNPKG

ox

Version:

Ethereum Standard Library

15 lines 1.12 kB
import * as z from 'zod/mini'; export declare const Identifier: z.ZodMiniString<string>; export declare const Address: z.ZodMiniLiteral<"address">; export declare const Bool: z.ZodMiniLiteral<"bool">; export declare const Bytes: z.ZodMiniString<string>; export declare const Function: z.ZodMiniLiteral<"function">; export declare const String: z.ZodMiniLiteral<"string">; export declare const Tuple: z.ZodMiniLiteral<"tuple">; export declare const Int: z.ZodMiniString<string>; export declare const ArrayWithoutTuple: z.ZodMiniString<string>; export declare const ArrayWithTuple: z.ZodMiniString<string>; export declare const Array: z.ZodMiniUnion<readonly [z.ZodMiniString<string>, z.ZodMiniString<string>]>; export declare const Type: z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"address">, z.ZodMiniLiteral<"bool">, z.ZodMiniString<string>, z.ZodMiniLiteral<"function">, z.ZodMiniLiteral<"string">, z.ZodMiniLiteral<"tuple">, z.ZodMiniString<string>, z.ZodMiniUnion<readonly [z.ZodMiniString<string>, z.ZodMiniString<string>]>]>; export declare function isType(type: string): boolean; //# sourceMappingURL=Solidity.d.ts.map