UNPKG

ts-budgie

Version:

Converts TypeScript code to Budgie.

27 lines (26 loc) 682 B
/** * A single line of output Budgie. */ export declare class BudgieLine { /** * Budgie command name. */ readonly command: string; /** * Arguments for the command. */ readonly args: (string | BudgieLine)[]; /** * Initializes a new instance of the BudgieLine class. * * @param command Budgie command name. * @param args Arguments for the command. */ constructor(command: string, ...args: (string | BudgieLine)[]); /** * Creates the Budgie syntax equivalent for this line. * * @returns The Budgie syntax equivalent for this line. */ toString(): string; }