@slippy-lint/slippy
Version:
A simple but powerful linter for Solidity
14 lines (13 loc) • 441 B
TypeScript
import * as z from "zod";
import { RuleDefinitionWithConfig } from "./types.js";
declare const Schema: z.ZodDefault<z.ZodObject<{
file: z.ZodDefault<z.ZodArray<z.ZodEnum<{
[x: string]: string;
}>>>;
contract: z.ZodDefault<z.ZodArray<z.ZodEnum<{
[x: string]: string;
}>>>;
}, z.core.$strip>>;
type Config = z.infer<typeof Schema>;
export declare const SortMembers: RuleDefinitionWithConfig<Config>;
export {};