mirror of
https://github.com/DavidAnson/markdownlint.git
synced 2025-09-22 05:40:48 +02:00
8 lines
221 B
TypeScript
8 lines
221 B
TypeScript
import type { ConfigurationStrict } from "./configuration-strict.d.ts";
|
|
|
|
export interface Configuration extends ConfigurationStrict {
|
|
/**
|
|
* Index signature for arbitrary custom rules.
|
|
*/
|
|
[k: string]: unknown;
|
|
}
|