4 lines
96 B
TypeScript
4 lines
96 B
TypeScript
declare class ServeCommand {
|
|
apply(cli: any): Promise<void>;
|
|
}
|
|
export default ServeCommand;
|