fix(core): update

This commit is contained in:
Philipp Kunz 2020-06-10 09:26:47 +00:00
parent c0d3e507f7
commit 164fe4a33c

View File

@ -116,5 +116,5 @@ export interface ILogPackageAuthenticated {
* a destination interface for extending smartlog modules
*/
export interface ILogDestination {
handleLog: (logPackage: ILogPackage) => void;
handleLog: (logPackage: ILogPackage) => Promise<void>;
}