mirror of
https://github.com/quine-global/hyper.git
synced 2026-01-12 20:18:41 -09:00
20 lines
517 B
TypeScript
20 lines
517 B
TypeScript
declare module 'php-escape-shell' {
|
|
export function php_escapeshellcmd(path: string): string;
|
|
}
|
|
|
|
declare module 'git-describe' {
|
|
export function gitDescribe(...args: any[]): void;
|
|
}
|
|
|
|
declare module 'default-shell' {
|
|
const val: string;
|
|
export default val;
|
|
}
|
|
|
|
declare module 'sudo-prompt' {
|
|
export function exec(
|
|
cmd: string,
|
|
options: {name?: string; icns?: string; env?: {[key: string]: string}},
|
|
callback: (error?: Error, stdout?: string | Buffer, stderr?: string | Buffer) => void
|
|
): void;
|
|
}
|