Modified the http module to remove the cyclic references. Added promises.d.ts.

This commit is contained in:
atanasovg
2014-05-21 16:27:13 +03:00
parent 1dd3a5f9b5
commit db987a361d
19 changed files with 169 additions and 37 deletions

View File

@ -1,6 +1,4 @@
// TODO: Implement "hidden" notation so that such declarations are not included in the d.ts file we will provide for the users.
//@hidden
//@private
export declare class FileSystemAccess {
getLastModified(path: string): Date;

View File

@ -1,7 +1,7 @@

declare module "file-system" {
import promises = require("promises/promises");
import promises = require("promises");
export class FileSystemEntity {
/**

View File

@ -1,5 +1,5 @@
import file_access_module = require("file-system/file-system-access");
import promises = require("promises/promises");
import promises = require("promises");
// The FileSystemAccess implementation, used through all the APIs.
var fileAccess;