7 lines
169 B
TypeScript
7 lines
169 B
TypeScript
|
|
/**
|
||
|
|
*
|
||
|
|
* @param appPath path to the app executable
|
||
|
|
* @returns human-readable app name
|
||
|
|
*/
|
||
|
|
export declare function getAppName(executablePath: string): Promise<string>;
|