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

16 lines (15 loc) 525 B
/// <reference types="@rbxts/compiler-types" /> /// <reference types="@rbxts/types" /> import ZrScript from "@rbxts/zirconium/out/Runtime/Script"; interface stdio { stdout: Array<string>; stdin: Array<string>; } export interface ExecutionParams extends stdio { pipedOutput: boolean; } export declare namespace ZirconDispatchService { function ExecuteScript(player: Player, text: string): Promise<ZrScript>; } export declare type ZirconDispatchService = typeof ZirconDispatchService; export {};