UNPKG

yini-parser

Version:

Node.js parser for YINI — a clean, structured INI alternative with types, simple section nesting, comments, and strict mode.

7 lines (6 loc) 180 B
import { TDataType } from '../core/YINIVisitor'; declare const parseNumberLiteral: (txt: string) => { type: TDataType; value: number; }; export default parseNumberLiteral;