UNPKG

cdk8s

Version:

This is the core library of Cloud Development Kit (CDK) for Kubernetes (cdk8s). cdk8s apps synthesize into standard Kubernetes manifests which can be applied to any Kubernetes cluster.

10 lines (9 loc) 416 B
/**************************************************************************************** * Expose `child_process` via our own object that can be easily patched by jest for tests. * Consumers of the `child_process` module should add functions to this object and import it * wherever needed. */ import { spawnSync } from 'child_process'; export declare const _child_process: { spawnSync: typeof spawnSync; };