koa-program/extend/api.ts

16 lines
180 B
TypeScript
Raw Normal View History

interface Command {
Initialize(): void;
Prompting(): void;
Writing(): void;
Installing(): void;
Ending(): void;
}
interface Console {
}
export { Command, Console };