UNPKG

@athenna/core

Version:

One foundation for multiple applications.

16 lines (15 loc) 456 B
/** * @athenna/core * * (c) João Lenon <lenon@athenna.io> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ import { REPLServer } from 'node:repl'; import { Command } from '#src/repl/helpers/Command'; export declare class Clean extends Command { static signature(): string; static help(): string; static action(this: REPLServer, property: string): void; }