UNPKG

@slippy-lint/slippy

Version:

A simple but powerful linter for Solidity

10 lines (9 loc) 349 B
import { RuleDefinitionWithConfig } from "./types.js"; import * as z from "zod"; declare const ConfigSchema: z.ZodDefault<z.ZodArray<z.ZodObject<{ query: z.ZodString; message: z.ZodString; }, z.core.$strict>>>; type Config = z.infer<typeof ConfigSchema>; export declare const NoRestrictedSyntax: RuleDefinitionWithConfig<Config>; export {};