UNPKG

276 BTypeScriptView Raw
1import { MLRule, Ruleset } from '@markuplint/ml-core';
2import { RuleConfigValue } from '@markuplint/ml-config';
3export declare function moduleAutoLoader<T extends RuleConfigValue, O = unknown>(ruleset: Ruleset): Promise<{
4 rules: MLRule<T, O>[];
5 errors: unknown[];
6}>;