inferred-types 0.54.2 → 0.54.3

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.
@@ -264,6 +264,7 @@ __export(src_exports, {
264
264
  filter: () => filter,
265
265
  find: () => find,
266
266
  fnMeta: () => fnMeta,
267
+ fromDefineObject: () => fromDefineObject,
267
268
  get: () => get,
268
269
  getDaysBetween: () => getDaysBetween,
269
270
  getEach: () => getEach,
@@ -7371,6 +7372,9 @@ function fnTokenClosure(kind, params, returns) {
7371
7372
  function createTypeToken(kind) {
7372
7373
  return isAtomicKind(kind) ? `<<${kind}>>` : isSingletonKind(kind) ? singletonApi(kind) : isSetBasedKind(kind) ? setApi(kind) : isFnBasedKind(kind) ? handleDoneFn(fnTokenClosure(kind, unset, unset)) : "<<never>>";
7373
7374
  }
7375
+ function fromDefineObject(defn) {
7376
+ return defn;
7377
+ }
7374
7378
  function getTokenKind(token) {
7375
7379
  const bare = stripSurround("<<", ">>")(token);
7376
7380
  const parts = bare.split("::");
@@ -7851,6 +7855,7 @@ var ExifSaturation = /* @__PURE__ */ ((ExifSaturation2) => {
7851
7855
  filter,
7852
7856
  find,
7853
7857
  fnMeta,
7858
+ fromDefineObject,
7854
7859
  get,
7855
7860
  getDaysBetween,
7856
7861
  getEach,