microsoft/vscode-react-native

Public

mirrored from https://github.com/microsoft/vscode-react-nativeAvailable

CodeCommitsIssuesPull requestsActionsInsightsSecurity
6f8b71fe85533260cf2134f19ea58e076315bb37

Branches

Tags

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

Clone

HTTPS

Download ZIP

src/common/node/node.ts

10lines · modeblame

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