asajs
Version:
Make your Minecraft JsonUI with ScriptingAPI
12 lines (11 loc) • 409 B
TypeScript
import { Class } from "../components/Class";
export declare class Encoder extends Class {
static count: number;
static start(): void;
static replaceCode(path: string, code: any): void;
static encode(code: any): any;
static encodeArray(code: any[]): any[];
static encodeObject(code: any): object;
static encodeString(code: string): string;
static readCode(path: string): any;
}