pulumi/tests/testdata/codegen/throw-not-implemented-pp/nodejs/throw-not-implemented.ts

8 lines
199 B
TypeScript

import * as pulumi from "@pulumi/pulumi";
function notImplemented(message: string) {
throw new Error(message);
}
export const result = notImplemented("expression here is not implemented yet");