mirror of
https://github.com/vrtmrz/obsidian-livesync.git
synced 2026-08-26 21:37:05 +00:00
5 lines
220 B
TypeScript
5 lines
220 B
TypeScript
import type { LOG_LEVEL } from "@vrtmrz/livesync-commonlib/compat/common/types";
|
|
|
|
/** Diagnostic output supplied by the Webapp host. */
|
|
export type WebAppLog = (message: unknown, level: LOG_LEVEL, key?: string) => void;
|