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