hook-engine
Version:
Production-grade webhook engine with comprehensive adapter support, security, reliability, structured logging, and CLI tools.
10 lines (9 loc) • 372 B
TypeScript
export * from './sqlite';
export * from './memory';
export { StorageAdapter, StoredEvent, StorageStats } from '../types/storage';
import { StorageAdapter } from '../types/storage';
import { StorageConfig } from '../types/config';
/**
* Create storage adapter based on configuration
*/
export declare function createStorageAdapter(config: StorageConfig): StorageAdapter;