7 lines
353 B
TypeScript
7 lines
353 B
TypeScript
import { OraImpl } from '@electron-forge/async-ora';
|
|
import InstallerBase, { InstallerOptions } from '@electron-forge/installer-base';
|
|
export { InstallerOptions };
|
|
export default abstract class InstallerDarwin extends InstallerBase {
|
|
moveApp(appPath: string, targetApplicationPath: string, spinner: OraImpl, copyInstead?: boolean): Promise<void>;
|
|
}
|