aboutsummaryrefslogtreecommitdiff
path: root/node_modules/nexe/lib/util.d.ts
diff options
context:
space:
mode:
Diffstat (limited to 'node_modules/nexe/lib/util.d.ts')
-rw-r--r--node_modules/nexe/lib/util.d.ts27
1 files changed, 27 insertions, 0 deletions
diff --git a/node_modules/nexe/lib/util.d.ts b/node_modules/nexe/lib/util.d.ts
new file mode 100644
index 0000000..af5d668
--- /dev/null
+++ b/node_modules/nexe/lib/util.d.ts
@@ -0,0 +1,27 @@
+/// <reference types="node" />
+import { readFile, writeFile, stat } from 'fs';
+import { execFile } from 'child_process';
+declare const rimrafAsync: (arg1: string) => Promise<void>;
+export declare const STDIN_FLAG = "[stdin]";
+export declare function each<T>(list: T[] | Promise<T[]>, action: (item: T, index: number, list: T[]) => Promise<any>): Promise<any[]>;
+export declare function wrap(code: string): string;
+declare function padRight(str: string, l: number): string;
+declare const bound: MethodDecorator;
+declare function dequote(input: string): string;
+export interface ReadFileAsync {
+ (path: string): Promise<Buffer>;
+ (path: string, encoding: string): Promise<string>;
+}
+declare const readFileAsync: typeof readFile.__promisify__;
+declare const writeFileAsync: typeof writeFile.__promisify__;
+declare const statAsync: typeof stat.__promisify__;
+declare const execFileAsync: typeof execFile.__promisify__;
+declare const isWindows: boolean;
+declare function pathExistsAsync(path: string): Promise<boolean>;
+declare function isDirectoryAsync(path: string): Promise<boolean>;
+/**
+ * @param version See if this version is greather than the second one
+ * @param operand Version to compare against
+ */
+declare function semverGt(version: string, operand: string): boolean;
+export { dequote, padRight, semverGt, bound, isWindows, rimrafAsync, statAsync, execFileAsync, readFileAsync, pathExistsAsync, isDirectoryAsync, writeFileAsync, };