microsoft/vscode-react-native
Publicmirrored from https://github.com/microsoft/vscode-react-nativeAvailable
src/utils/node/node.ts
10lines · modeblame
a31b007cunknown10 years ago | 1 | // Copyright (c) Microsoft Corporation. All rights reserved. |
| 2 | // Licensed under the MIT license. See LICENSE file in the project root for details. | |
| 3 | | |
3fb37ad5unknown10 years ago | 4 | import * as childProcess from "./childProcess"; |
| 5 | import * as file from "./fileSystem"; | |
| 6 | | |
| 7 | export module Node { | |
| 8 | export var ChildProcess = childProcess.ChildProcess; | |
| 9 | export var FileSystem = file.FileSystem; | |
| 10 | } |