haystack-codegen
Version:
Project Haystack Core code generation tools
11 lines (10 loc) • 308 B
TypeScript
import { Node } from './Node';
/**
* Generates the imports from the haystack-core library.
*/
export declare class HaystackCoreImportNode implements Node {
readonly types: Set<string>;
readonly newLines = 1;
constructor(types?: string[]);
generateCode(out: (code: string) => void): void;
}