UNPKG

ts-budgie

Version:

Converts TypeScript code to Budgie.

15 lines (14 loc) 543 B
import { BudgieLine } from "./budgieLine"; /** * Creates a Budgie line for unsupported syntax. * * @param reason Why the syntax is unsupported. * @returns Budgie line for unsupported syntax for the reason. */ export declare const createUnsupportedBudgieLine: (reason: string) => BudgieLine; /** * Creates a Budgie line for unsupported syntax due to an unsupported type. * * @returns Budgie line for unsupported syntax for an unsupported type. */ export declare const createUnsupportedTypeBudgieLine: () => BudgieLine;