UNPKG

terraform-generator

Version:

Generate Terraform configurations with Node.js.

18 lines (17 loc) 410 B
import { Argument, Attribute } from '../arguments'; import { Block } from '.'; /** * @category Block */ export declare class Comment extends Block<Record<string, never>> { readonly comment: string; /** * Construct comment. * * @param comment comment */ constructor(comment: string); toTerraform(): string; asArgument(): Argument; attr(_name: string): Attribute; }