Skip to content

Commit

Permalink
fix(zone): Ignore type error that occurrs only integration with vats
Browse files Browse the repository at this point in the history
  • Loading branch information
kriskowal committed Dec 19, 2023
1 parent e5712a1 commit ffea2d5
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions packages/zone/src/durable.js
Original file line number Diff line number Diff line change
Expand Up @@ -89,6 +89,10 @@ export const makeDurableZone = (baggage, baseLabel = 'durableZone') => {
/** @type {import('.').Zone['exoClass']} */
const exoClass = (...args) => prepareExoClass(baggage, ...args);
/** @type {import('.').Zone['exoClassKit']} */
// @ts-ignore This type check regressed inexplicably with the release
// following after @endo/[email protected].
// The lint error does not occur in local lint, but does in integration with
// @agoric/vats, so can not be suppressed with ts-expect-error.
const exoClassKit = (...args) => prepareExoClassKit(baggage, ...args);
/** @type {import('.').Zone['exo']} */
const exo = (...args) => prepareExo(baggage, ...args);
Expand Down

0 comments on commit ffea2d5

Please sign in to comment.