pulumi/sdk/nodejs/index.ts
Pat Gavlin a23b10a9bf
Update the copyright end date to 2018. (#1068)
Just what it says on the tin.
2018-03-21 12:43:21 -07:00

18 lines
519 B
TypeScript

// Copyright 2016-2018, Pulumi Corporation. All rights reserved.
// Enable source map support so we get good stack traces.
import "source-map-support/register";
// Export top-level elements.
export * from "./config";
export * from "./errors";
export * from "./metadata";
export * from "./resource";
// Export submodules individually.
import * as asset from "./asset";
import * as dynamic from "./dynamic";
import * as log from "./log";
import * as runtime from "./runtime";
export { asset, dynamic, log, runtime };