import type { EthSignLog } from "./EthSignLog.cjs"; import type { GenericLog } from "./GenericLog.cjs"; /** * 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.cjs"; export type * from "./GenericLog.cjs"; export * from "./LogType.cjs"; //# sourceMappingURL=index.d.cts.map