/var/www/greso.tech/server/nsm/node_modules/editorconfig/src/lib
NameSizeModeActions
fnmatch.d.ts55620644editdlrm
fnmatch.js304070644editdlrm
ini.d.ts6170644editdlrm
ini.js47170644editdlrm
Edit: /var/www/greso.tech/server/nsm/node_modules/editorconfig/src/lib/ini.d.ts (617B)
/// import { URL } from 'url'; /** * Parses an .ini file * @param file The location of the .ini file */ export declare function parse(file: string | number | Buffer | URL): Promise<[string | null, SectionBody][]>; export declare function parseSync(file: string | number | Buffer | URL): [string | null, SectionBody][]; export declare type SectionName = string | null; export interface SectionBody { [key: string]: string; } export declare type ParseStringResult = Array<[SectionName, SectionBody]>; export declare function parseString(data: string): ParseStringResult;