forked from Rowland/EG
9 lines
221 B
TypeScript
9 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;
|
|
}
|