pulumi/sdk/nodejs/runtime/index.ts
CyrusNajmabadi 304af9cdf1
Split closure serialization into separate files containing the different concerns. (#1045)
The four concerns are:

    parsing a v8 function string so we can figure out captured variables.
    walkgin the function/object graph producing the graph we will serialize.
    rewriting constructors and methods so that 'super' works.
    serializing graph to text.
2018-03-12 18:12:49 -07:00

9 lines
293 B
TypeScript

// Copyright 2016-2017, Pulumi Corporation. All rights reserved.
export { serializeFunctionAsync } from "./closure/serializeClosure";
export * from "./config";
export * from "./invoke";
export * from "./resource";
export * from "./rpc";
export * from "./settings";
export * from "./stack";