Update electron-packager.d.ts

This commit is contained in:
Elisée
2016-01-18 09:48:30 +01:00
parent 70bf7e2bfe
commit f03447b870
+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 */