pulumi/pkg/codegen/internal/test/testdata/simple-methods-schema/nodejs/types/input.ts
2021-11-17 11:21:33 -08:00

18 lines
489 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 { input as inputs, output as outputs } from "../types";
export namespace nested {
export interface Baz {
hello?: string;
world?: string;
}
export interface BazArgs {
hello?: pulumi.Input<string | undefined>;
world?: pulumi.Input<string | undefined>;
}
}