intl-messageformat 10.5.6 → 10.5.7

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/index.d.ts CHANGED
@@ -1,5 +1,6 @@
1
1
  import { IntlMessageFormat } from './src/core';
2
- export * from './src/formatters';
3
2
  export * from './src/core';
4
3
  export * from './src/error';
4
+ export * from './src/formatters';
5
+ export { IntlMessageFormat };
5
6
  export default IntlMessageFormat;
package/index.js CHANGED
@@ -5,9 +5,11 @@ Copyrights licensed under the New BSD License.
5
5
  See the accompanying LICENSE file for terms.
6
6
  */
7
7
  Object.defineProperty(exports, "__esModule", { value: true });
8
+ exports.IntlMessageFormat = void 0;
8
9
  var tslib_1 = require("tslib");
9
10
  var core_1 = require("./src/core");
10
- tslib_1.__exportStar(require("./src/formatters"), exports);
11
+ Object.defineProperty(exports, "IntlMessageFormat", { enumerable: true, get: function () { return core_1.IntlMessageFormat; } });
11
12
  tslib_1.__exportStar(require("./src/core"), exports);
12
13
  tslib_1.__exportStar(require("./src/error"), exports);
14
+ tslib_1.__exportStar(require("./src/formatters"), exports);
13
15
  exports.default = core_1.IntlMessageFormat;