import type { EthSignLog } from "./EthSignLog.mjs"; import type { GenericLog } from "./GenericLog.mjs"; /** * Union of all possible log data structures. */ export type Log = EthSignLog | GenericLog; /** * Export all other types from these files for usage by clients */ export * from "./EthSignLog.mjs"; export type * from "./GenericLog.mjs"; export * from "./LogType.mjs"; //# sourceMappingURL=index.d.mts.map