UNPKG

@jahed/terraform

Version:

A wrapper which downloads and runs Terraform locally via npm.

20 lines (19 loc) 405 B
/// <reference types="node" /> /// <reference types="node" /> export type Outputs = { path: string; version: string; filename: string; versionedFilename: string; originalFilename: string; }; export type DownloadArgs = { version: string; platform: string; architecture: string; }; export type ExtractArgs = { outputs: Outputs; buffer: Buffer; outdir: string; };