Is there any way to use these types explicitly in ...
# general
m
Is there any way to use these types explicitly in a typescript pulumi program? https://github.com/pulumi/pulumi-kubernetes/blob/master/sdk/nodejs/types/input.ts i.e.
const securityContext: core.v1.SecurityContext = { ... }
c
import * as inputApi from "@pulumi/pulumi/types/input"
m
It seems like that's not exported unfortunately. module not found error
b
try
import * as kubeTypes from '@pulumi/kubernetes/types/input'
🙏 1
👋 1