pulumi/tests/testdata/codegen/config-variables/nodejs/config/vars.ts

18 lines
517 B
TypeScript

// *** WARNING: this file was generated by test. ***
// *** Do not edit by hand unless you're certain you know what you are doing! ***
import * as pulumi from "@pulumi/pulumi";
import * as utilities from "../utilities";
declare var exports: any;
const __config = new pulumi.Config("example");
export declare const httpRetryWaitMax: number | undefined;
Object.defineProperty(exports, "httpRetryWaitMax", {
get() {
return __config.getObject<number>("httpRetryWaitMax");
},
enumerable: true,
});