@qualweb/core
Version:
QualWeb evaluator core engine
15 lines • 380 B
TypeScript
import { Level } from './Level';
import { Principle } from './Principle';
export type ModuleOptions = {
include?: string[];
exclude?: string[];
levels?: Level[];
principles?: Principle[];
selectors?: {
[key: string]: string;
};
settings?: {
[key: string]: string | number | boolean;
};
};
//# sourceMappingURL=ModuleOptions.d.ts.map