Merge pull request #7677 from elisee/patch-1

Update electron-packager.d.ts
This commit is contained in:
Horiuchi_H
2016-01-20 17:26:59 +09:00
+3 -3
View File
@@ -81,12 +81,12 @@ declare namespace ElectronPackager {
/** Electron-packager done callback. */
export interface Callback {
/**
* Callback wich is called when electron-packager is done.
* Callback which is called when electron-packager is done.
*
* @param err - Contains errors if any.
* @param appPath - Path to the newly created application.
* @param appPath - Path(s) to the newly created application(s).
*/
(err: Error, appPath: string): void
(err: Error, appPath: string|string[]): void
}
/** Electron-packager function */