Files
med-notes/.pnpm-store/v10/files/a4/3d9ae08fc7ae6175afbda9cb4bd76cd08226a7ce703b1cfaecad43e81b89d240ce023c7deebf8d74803861e639e32cfff3c78b70969498f4a4532adebe5544
2025-05-09 05:30:08 +02:00

20 lines
361 B
Plaintext

/**
* @fileoverview Types for the config-array package.
* @author Nicholas C. Zakas
*/
export interface ConfigObject {
/**
* The files to include.
*/
files?: string[];
/**
* The files to exclude.
*/
ignores?: string[];
/**
* The name of the config object.
*/
name?: string;
[key: string]: unknown;
}