microsoft/vscode-react-native
Publicmirrored from https://github.com/microsoft/vscode-react-nativeAvailable
src/common/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 | | |
09f6024fHeniker4 years ago | 7 | export namespace Node { |
27710197Vladimir Kotikov8 years ago | 8 | export const ChildProcess = childProcess.ChildProcess; |
| 9 | export const FileSystem = file.FileSystem; | |
3fb37ad5unknown10 years ago | 10 | } |