ini-simple-parser
Version:
A simple, fast and configurable INI parser.
9 lines (8 loc) • 494 B
TypeScript
import type { Primitive } from './types.js';
declare const inferBoolean: (value: Primitive) => Primitive;
declare const inferNull: (value: Primitive) => Primitive;
declare const inferNumber: (value: Primitive) => Primitive;
declare const inferString: (value: Primitive) => Primitive;
declare const isString: (value: unknown) => value is string;
declare const stripComments: (value: Primitive) => Primitive;
export { inferBoolean, inferNull, inferNumber, inferString, isString, stripComments };