Install ini package for parsing INI files

This commit is contained in:
Peter McEvoy
2024-10-20 12:39:07 -04:00
parent b3a9c64ba8
commit 477ffd47fc
3 changed files with 13 additions and 0 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>;
}