mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
91 lines
2.3 KiB
TypeScript
91 lines
2.3 KiB
TypeScript
// Type definitions for pathwatcher
|
|
// Project: https://github.com/atom/node-pathwatcher
|
|
// Definitions by: vvakame <https://github.com/vvakame/>
|
|
// Definitions: https://github.com/borisyankov/DefinitelyTyped
|
|
|
|
/// <reference path="../node/node.d.ts" />
|
|
/// <reference path="../q/Q.d.ts" />
|
|
|
|
declare module PathWatcher {
|
|
interface IFileStatic {
|
|
new (path:string, symlink?:boolean):IFile;
|
|
}
|
|
|
|
interface IFile {
|
|
realPath:string;
|
|
path:string;
|
|
symlink:boolean;
|
|
cachedContents:string;
|
|
digest:string;
|
|
|
|
handleEventSubscriptions():void;
|
|
setPath(path:string):void;
|
|
getPath():string;
|
|
getRealPathSync():string;
|
|
getBaseName():string;
|
|
write(text:string):void;
|
|
readSync(flushCache:boolean):string;
|
|
read(flushCache?:boolean):Q.Promise<string>;
|
|
// exists():boolean;
|
|
existsSync():boolean;
|
|
setDigest(contents:string):void;
|
|
getDigest():string;
|
|
writeFileWithPrivilegeEscalationSync (filePath:string, text:string):void;
|
|
handleNativeChangeEvent(eventType:string, eventPath:string):void;
|
|
detectResurrectionAfterDelay():void;
|
|
detectResurrection():void;
|
|
subscribeToNativeChangeEvents():void;
|
|
unsubscribeFromNativeChangeEvents():void;
|
|
}
|
|
|
|
interface IDirectoryStatic {
|
|
new (path:string, symlink?:boolean):IDirectory;
|
|
}
|
|
|
|
interface IDirectory {
|
|
realPath:string;
|
|
path:string;
|
|
symlink:boolean;
|
|
|
|
getBaseName():string;
|
|
getPath():void;
|
|
getRealPathSync():string;
|
|
contains(pathToCheck:string):boolean;
|
|
relativize(fullPath:string):string;
|
|
getEntriesSync():any[]; // return type are {File | Directory}[]
|
|
getEntries(callback:Function):void;
|
|
subscribeToNativeChangeEvents():void;
|
|
unsubscribeFromNativeChangeEvents():void;
|
|
isPathPrefixOf(prefix:string, fullPath:string):boolean;
|
|
}
|
|
}
|
|
|
|
declare module "pathwatcher" {
|
|
|
|
import events = require("events");
|
|
|
|
interface IHandleWatcher extends events.EventEmitter {
|
|
onEvent(event:any, filePath:any, oldFilePath:any):any;
|
|
start():void;
|
|
closeIfNoListener():void;
|
|
close():void;
|
|
}
|
|
|
|
interface IPathWatcher {
|
|
isWatchingParent:boolean;
|
|
path:any;
|
|
handleWatcher:IHandleWatcher;
|
|
|
|
close():void;
|
|
}
|
|
|
|
function watch(path:string, callback:Function):IPathWatcher;
|
|
|
|
function closeAllWatchers():void;
|
|
|
|
function getWatchedPaths():string[];
|
|
|
|
var File:PathWatcher.IFileStatic;
|
|
var Directory:PathWatcher.IDirectoryStatic;
|
|
}
|