package.dist.PropertiesFileFormat.d.ts Maven / Gradle / Ivy
/**
* Parses a .properties format
* @param {string} sText the contents a of a .properties file
* @returns a object with key/value pairs parsed from the .properties file format
* @public
*/
declare const parseProperties: (sText: string) => {};
export default parseProperties;