mirror of
https://github.com/DavidAnson/markdownlint.git
synced 2026-01-01 13:38:49 +01: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;
|
|
}
|