UNPKG

properties-file

Version:

.properties file parser, editor, formatter and Webpack loader.

9 lines (8 loc) 238 B
declare module '*.properties' { /** A key/value object representing the content of a `.properties` file. */ const properties: { /** The value of a `.properties` file key. */ [key: string]: string } export { properties } }