inferred-types 0.53.4 → 0.53.5

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.
@@ -54,6 +54,7 @@ __export(src_exports, {
54
54
  csv: () => csv,
55
55
  defineCss: () => defineCss,
56
56
  defineObj: () => defineObj,
57
+ defineObject: () => defineObject,
57
58
  defineTuple: () => defineTuple,
58
59
  endsWith: () => endsWith,
59
60
  ensureLeading: () => ensureLeading,
@@ -2504,6 +2505,11 @@ function isLeapYear(val) {
2504
2505
  return year % 100 === 0 ? year % 400 === 0 : year % 4 === 0;
2505
2506
  }
2506
2507
 
2508
+ // src/dictionary/defineObject.ts
2509
+ function defineObject(defn) {
2510
+ return defn;
2511
+ }
2512
+
2507
2513
  // src/dictionary/entries.ts
2508
2514
  function entries(obj) {
2509
2515
  const iterable = {
@@ -5188,6 +5194,7 @@ function asVueRef(value) {
5188
5194
  csv,
5189
5195
  defineCss,
5190
5196
  defineObj,
5197
+ defineObject,
5191
5198
  defineTuple,
5192
5199
  endsWith,
5193
5200
  ensureLeading,