microsoft/vscode-react-native

Public

mirrored fromhttps://github.com/microsoft/vscode-react-nativeAvailable

CodeCommitsIssuesPull requestsActionsInsightsSecurity
69ea1469c66b32e67b5b53b268b15cee12f6b04f

Branches

Tags

  • No tags available.
0Branches0Tags
Go to file
Add file
Code

Clone

HTTPS

Download ZIP

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
4import * as childProcess from "./childProcess";
5import * as file from "./fileSystem";
6
7export module Node {
8 export var ChildProcess = childProcess.ChildProcess;
9 export var FileSystem = file.FileSystem;
10}
11