//#region src/plus/salesSdk/demo/hosts/legacyOpenProductDetail.d.ts /** Demo / ticketBooking 风格 Host 运行时上下文(由 Bridge 同步,Host 每次打开弹窗时读取)。 */ interface LegacyProductDetailHostRuntime { customerId?: number | string; date?: string; } interface CreateLegacyOpenProductDetailHostDeps { /** LCE `appHelper.utils.action` */ action: (opts: Record) => void; /** 每次打开弹窗时读取最新页面态(customerId / date 等) */ getRuntime: () => LegacyProductDetailHostRuntime; } //#endregion export { CreateLegacyOpenProductDetailHostDeps, LegacyProductDetailHostRuntime };