// Type definitions for iniparser // Project: https://github.com/shockie/node-iniparser // Definitions by: Ilya Mochalov // Definitions: https://github.com/borisyankov/DefinitelyTyped declare module "iniparser" { export function parse( file: string, callback: (err: any, data: T) => void ): void; export function parseSync(file: string): T; export function parseString(data: string): T; }