UNPKG

@eslint/plugin-kit

Version:

Utilities for building ESLint plugins.

7 lines (6 loc) 199 B
/** * @fileoverview Types for the plugin-kit package. * @author Nicholas C. Zakas */ export type StringConfig = Record<string, string | null>; export type BooleanConfig = Record<string, boolean>;