Skip to content

Commit ed64137

Browse files
committed
Implement Cli Application interface
1 parent 4aeff88 commit ed64137

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

packages/cli/src/CliApplication.ts

+4-1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,9 @@ import type {
22
ParseOptions,
33
OutputConfiguration
44
} from "commander";
5+
import type {
6+
CliApplication as CliApplicationContract
7+
} from "@aedart/contracts/cli";
58
import type {
69
Application
710
} from "@aedart/contracts/core";
@@ -18,7 +21,7 @@ import { existsSync } from "node:fs";
1821
/**
1922
* Cli Application
2023
*/
21-
export default class CliApplication
24+
export default class CliApplication implements CliApplicationContract
2225
{
2326
/**
2427
* The "core" application instance

0 commit comments

Comments
 (0)