Install ini package for parsing INI files

This commit is contained in:
Peter McEvoy 2024-10-20 12:39:07 -04:00 committed by Kyle Leonhard
parent ff0f4b6812
commit e4f60bc7fe
5 changed files with 797 additions and 1084 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>;
}