hyper/app/ext-modules.d.ts
2023-02-21 12:58:42 +05:30

16 lines
418 B
TypeScript

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;
}