Install ini package for parsing INI files

This commit is contained in:
Peter McEvoy 2024-10-20 12:39:07 -04:00
parent 3b8b03f6c1
commit 626bea34d5
3 changed files with 634 additions and 1106 deletions

3
src/ini.d.ts vendored Normal file
View file

@ -0,0 +1,3 @@
declare module 'ini' {
function parse(ini: string): Record<string, string | object>;
}