UNPKG

@textlint/types

Version:
10 lines 385 B
/** * textlint rule option values is object or boolean. * if this option value is false, disable the rule. */ import { TextlintRuleSeverityLevelKey } from "./TextlintRuleSeverityLevelKey.js"; export type TextlintRuleOptions<T extends object = object> = { [index: string]: any; severity?: TextlintRuleSeverityLevelKey; } & T; //# sourceMappingURL=TextlintRuleOptions.d.ts.map