16 lines
180 B
TypeScript
16 lines
180 B
TypeScript
interface Command {
|
|
Initialize(): void;
|
|
|
|
Prompting(): void;
|
|
|
|
Writing(): void;
|
|
|
|
Installing(): void;
|
|
|
|
Ending(): void;
|
|
}
|
|
|
|
interface Console {
|
|
}
|
|
|
|
export { Command, Console }; |