Skip to content

Commit

Permalink
chore(types): indicate remotable
Browse files Browse the repository at this point in the history
  • Loading branch information
turadg committed Jan 18, 2024
1 parent 226da84 commit 484487c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/time/src/types.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ import type { RankComparison, RemotableObject } from '@endo/marshal';
* See https://github.com/Agoric/agoric-sdk/issues/5798
* and https://github.com/Agoric/agoric-sdk/pull/5821
*/
export type TimerBrand = {
export type TimerBrand = RemotableObject & {
isMyTimerService: (timer: TimerService) => ERef<boolean>;
isMyClock: (clock: Clock) => ERef<boolean>;
};
Expand Down
2 changes: 1 addition & 1 deletion packages/zoe/tools/fakePriceAuthority.js
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ const timestampLTE = (a, b) => TimeMath.compareAbs(a, b) <= 0;
* @property {Brand<'nat'>} actualBrandOut
* @property {Array<number>} [priceList]
* @property {Array<[number, number]>} [tradeList]
* @property {ERef<import('@agoric/time').TimerService>} timer
* @property {import('@agoric/time').TimerService} timer
* @property {import('@agoric/time').RelativeTime} [quoteInterval]
* @property {ERef<Mint<'set'>>} [quoteMint]
* @property {Amount<'nat'>} [unitAmountIn]
Expand Down

0 comments on commit 484487c

Please sign in to comment.