Files
med-notes/.pnpm-store/v10/files/ba/9d58ef0b9c24066cf6f9ccb07c6583f3f424d056d410adf1e5ad3cef8baa2fce3d2a0a6540740be94de93055ccb418aff3ca9aa3e2757e4c74fcf1927941b6
2025-05-09 05:30:08 +02:00

25 lines
375 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;
// may also have any number of other properties
[key: string]: unknown;
}