Sha256: c3d0d3156334c34595590c9f84f3ac221774f923945c4c64aae3e04fb8a21554
Contents?: true
Size: 375 Bytes
Versions: 48
Compression:
Stored size: 375 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; // may also have any number of other properties [key: string]: unknown; }
Version data entries
48 entries across 24 versions & 1 rubygems