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

12 lines (11 loc) 372 B
/// <reference types="roact" /> import Roact from "@rbxts/roact"; import { ConsoleMessage } from "../../Client/Types"; interface ZirconOutputMessageProps { Message: ConsoleMessage; ShowTags: boolean; } export default class ZirconOutputMessage extends Roact.PureComponent<ZirconOutputMessageProps> { render(): Roact.Element | undefined; } export {};