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

10 lines (9 loc) 318 B
import { ZirconFunction } from "./ZirconFunction"; import { ZirconNamespace } from "./ZirconNamespace"; export declare class ZirconNamespaceBuilder { private name; private functions; constructor(name: string); AddFunction(func: ZirconFunction<any, any>): this; Build(): ZirconNamespace; }