UNPKG

properties-file

Version:

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

13 lines (11 loc) 398 B
/** * Webpack file loader for `.properties` files. * * @param content - the content of a `.properties` file. * * @returns A Webpack file loader string containing the content of a `.properties` file. */ declare const webpackLoader: (content: string) => string; export default webpackLoader; // Enables type recognition for direct `.properties` file imports. import '../properties-file.d.ts'