yini-parser
Version:
Readable configuration without YAML foot-guns or JSON noise. The official Node.js parser for YINI config format — An INI-inspired configuration format with clear nesting, explicit types, and predictable parsing.
16 lines • 585 B
JavaScript
;
/**
* Internal types ONLY, public (user-facing) type should go into src/types/index.ts.
*
* @note
* The use of null vs undefined
* ----------------------------
* The convention here (in this file) is:
* - undefined is used where a value is missing, or does not apply.
* - null is used where a value is missing or has not yet been computed.
*
* @note All names of **internal** types and interfaces (shapes) must be
* prefixed with `T` or `I`.
*/
Object.defineProperty(exports, "__esModule", { value: true });
//# sourceMappingURL=internalTypes.js.map