Skip to content

Commit 39c7e58

Browse files
Update and export types for depends, subdir and command (#98)
1 parent 95a028b commit 39c7e58

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

packages/mambajs-core/src/helper.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,8 @@ export interface IEmpackEnvMetaPkg {
3030
filename_stem: string;
3131
filename: string;
3232
url: string;
33+
depends: [],
34+
subdir: string
3335
}
3436

3537
export interface IEmpackEnvMeta {

packages/mambajs-core/src/parser.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ export interface IParsedCommand {
55
data: IInstallationCommandOptions | IUninstallationCommandOptions | null;
66
}
77

8-
type CommandsName = 'install' | 'list' | 'remove' | 'uninstall';
8+
export type CommandsName = 'install' | 'list' | 'remove' | 'uninstall';
99

1010
export interface ICommandData {
1111
commands: IParsedCommand[];

0 commit comments

Comments
 (0)