stale-holiday-22431
10/25/2018, 5:42 PMOutput<DaemonSetSpec>
when I’m trying to provide a DaemonSetSpec
. Normally I’d try assigning to a variable of type DaemonSetSpec
to get the type error for that, but I don’t see that type exported.creamy-potato-29402
10/25/2018, 5:51 PMimport * as inputApi from "@pulumi/kubernetes/types/input"
const x: inputApi.apps.v1.DaemonSetSpec;
/types/output
hundreds-musician-51496
10/25/2018, 6:12 PMOutput
type you should use the apply
method. spec.apply(spec => { ... })
. Inside the function s
will have type DameonSetSpec
.