UNPKG

@rbxts/zircon

Version:

<div> <img src="https://i.imgur.com/YgpbX7G.png" align="left" width="128"/> <h1>ZIRCON</h1> <h3>A clean, sleek, runtime debugging console for Roblox</h3> <a href="https://npmjs.com/package/@rbxts/zircon"><img src="https://badge.fury.io

11 lines (10 loc) 470 B
import { ZirconLogData, ZirconLogLevel } from "../Client/Types"; import { LogEvent } from "@rbxts/log"; export declare namespace ZirconLogService { function WriteStructured(data: LogEvent): void; /** * Writes a message to either the output stream or input stream of Zircon */ function Write(level: ZirconLogLevel, tag: string, message: string, data: ZirconLogData): void; } export declare type ZirconLogService = typeof ZirconLogService;