Sha256: fd26fad14893a20f1595504caed00671e5b52bac5971cde7f968b7ba7f826cdf
Contents?: true
Size: 361 Bytes
Versions: 24
Compression:
Stored size: 361 Bytes
Contents
/** * @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; }
Version data entries
24 entries across 24 versions & 1 rubygems