UNPKG

markuplint

Version:

A Linter for All Markup Languages.

12 lines (11 loc) 274 B
import { MLResultInfo } from '../types'; export declare type ReportingData = MLResultInfo & { format: string; color: boolean; problemOnly: boolean; noStdOut: boolean; verbose: boolean; }; export declare type Optional<C> = { [P in keyof C]?: C[P]; };