Skip to content

Commit

Permalink
chore(types): more explicit imports
Browse files Browse the repository at this point in the history
to fix build order sensitivity
  • Loading branch information
turadg committed May 15, 2024
1 parent df2fed7 commit d1a35d8
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
7 changes: 6 additions & 1 deletion packages/orchestration/src/orchestration-api.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,12 @@
* - must not have chain-specific types without runtime narrowing by chain id
* - should remain relatively stable.
*/
import type { Amount, Brand, NatAmount } from '@agoric/ertp/exported.js';
import type {
Amount,
Brand,
NatAmount,
Payment,
} from '@agoric/ertp/exported.js';
import type { LocalChainAccount } from '@agoric/vats/src/localchain.js';
import type { Timestamp } from '@agoric/time';
import type { KnownChains } from './types.js';
Expand Down
2 changes: 2 additions & 0 deletions packages/vats/src/core/basic-behaviors.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,8 @@ import { makeNameHubKit } from '../nameHub.js';
import { PowerFlags } from '../walletFlags.js';
import { feeIssuerConfig, makeMyAddressNameAdminKit } from './utils.js';

/** @import {GovernableStartFn, GovernanceFacetKit} from '@agoric/governance/src/types.js'; */

const { details: X } = assert;

/**
Expand Down

0 comments on commit d1a35d8

Please sign in to comment.