Skip to content

Commit

Permalink
feat: update types for commands
Browse files Browse the repository at this point in the history
  • Loading branch information
jbroma committed Apr 3, 2024
1 parent 270ca1a commit fd377fa
Showing 1 changed file with 13 additions and 1 deletion.
14 changes: 13 additions & 1 deletion packages/repack/commands.d.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,16 @@
const commands: [
{
name: 'bundle';
description: string;
options: Array<any>;
func: typeof import('./dist/commands/bundle').bundle;
},
{
name: 'start';
description: string;
options: Array<any>;
func: typeof import('./dist/commands/start').start;
},
{
name: 'webpack-bundle';
description: string;
Expand All @@ -10,6 +22,6 @@ const commands: [
description: string;
options: Array<any>;
func: typeof import('./dist/commands/start').start;
}
},
];
export default commands;

0 comments on commit fd377fa

Please sign in to comment.