mirror of
https://github.com/DavidAnson/markdownlint.git
synced 2025-12-16 22:10:13 +01:00
8 lines
211 B
TypeScript
8 lines
211 B
TypeScript
import { ConfigurationStrict } from "./configuration-strict";
|
|
|
|
export interface Configuration extends ConfigurationStrict {
|
|
/**
|
|
* Index signature for arbitrary custom rules.
|
|
*/
|
|
[k: string]: unknown;
|
|
}
|