@nebulaglitch/shopbot
Version:
A library to generate shopbot output
9 lines (8 loc) • 347 B
TypeScript
import { default as Code } from './code';
import { default as Command } from './command';
import { default as Label } from './label';
import { default as Variable } from './variable';
declare class ShopbotPrinter {
static print(arr: Array<Code | Command | Label | Variable | Array<any>>, sb?: string): string;
}
export default ShopbotPrinter;