@secretlint/types
Version:
A typing package for @secretlint
9 lines • 342 B
TypeScript
import type { SecretLintCoreResult } from "./SecretLintCore.js";
export type SecretLintFormatterOptions = {
/**
* Default: true
*/
color?: boolean;
};
export type SecretLintFormatter = (results: SecretLintCoreResult[], formatterConfig: SecretLintFormatterOptions) => string;
//# sourceMappingURL=SecretLintFormatter.d.ts.map