UNPKG

@secretlint/types

Version:
13 lines (11 loc) 304 B
import type { SecretLintCoreResult } from "./SecretLintCore.js"; export type SecretLintFormatterOptions = { /** * Default: true */ color?: boolean; }; export type SecretLintFormatter = ( results: SecretLintCoreResult[], formatterConfig: SecretLintFormatterOptions ) => string;