UNPKG

haystack-codegen

Version:

Project Haystack Core code generation tools

17 lines (16 loc) 382 B
import { HDict } from 'haystack-core'; import { Node } from './Node'; /** * Generates exported lib information. */ export declare class LibsNode implements Node { #private; readonly newLines = 1; generateCode(out: (code: string) => void): void; /** * Add a lib def to the node. * * @param lib The lib to add. */ addLib(lib: HDict): void; }