UNPKG

@elgato/streamdeck

Version:

The official Node.js SDK for creating Stream Deck plugins.

11 lines (10 loc) 248 B
import type { LogEntry, LogTarget } from "./target"; /** * Provides a {@link LogTarget} that logs to the console. */ export declare class ConsoleTarget implements LogTarget { /** * @inheritdoc */ write(entry: LogEntry): void; }