Skip to content

Commit

Permalink
fix(types): correct nwbuild function return type
Browse files Browse the repository at this point in the history
  • Loading branch information
ayushmanchhabra committed Nov 24, 2024
1 parent fa94df2 commit b274d27
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -176,6 +176,6 @@ export interface OsxAppOptions {
/**
* Automates building an NW.js application.
*/
declare function nwbuild<P extends SupportedPlatform>(options: Options<P>): Promise<void>;
declare function nwbuild<P extends SupportedPlatform>(options: Options<P>): Promise<child_process.ChildProcess | null | undefined>;

export default nwbuild;

0 comments on commit b274d27

Please sign in to comment.