UNPKG

terraform-generator

Version:

Generate Terraform configurations with Node.js.

21 lines (20 loc) 515 B
import { Argument } from '.'; /** * @category Argument */ export declare class Heredoc extends Argument { /** * Construct heredoc argument. * * @param content string or object, object will be stringify */ constructor(content: string | Record<any, any>); } /** * Convenient function to construct new [[Heredoc]]. * * @param content string or object, object will be stringify * * @category Argument */ export declare const heredoc: (content: string | Record<any, any>) => Heredoc;