/** * Constants for Auction State. */ export type AuctionState = (typeof AuctionState)[keyof typeof AuctionState]; export namespace AuctionState { let ACTIVE: "active"; let WAITING: "waiting"; } export function makeBrandedRatioPattern(numeratorAmountShape: { brand: Brand; value: Pattern; }, denominatorAmountShape: { brand: Brand; value: Pattern; }): { numerator: { brand: Brand; value: Pattern; }; denominator: { brand: Brand; value: Pattern; }; }; export function isScaledBidPriceHigher(bidScaling: Ratio, currentPrice: Ratio, oraclePrice: Ratio): boolean; /** @type {(quote: PriceQuote) => Ratio} */ export const priceFrom: (quote: PriceQuote) => Ratio; export function makeCancelTokenMaker(name: any): () => RemotableObject<`Alleged: ${string}`> & import("@endo/eventual-send").RemotableBrand<{}, {}>; import type { Pattern } from '@endo/patterns'; import type { PriceQuote } from '@agoric/zoe/tools/types.js'; //# sourceMappingURL=util.d.ts.map