export interface ExtensibleRecord { [key: string]: unknown; } export interface Notifiable { onNotify: (message: string, isLogOnly?: boolean) => void | Promise; onError: (customMessage: string, error: unknown) => void | Promise; } //# sourceMappingURL=common.d.ts.map