@athenna/core
Version:
One foundation for multiple applications.
16 lines (15 loc) • 440 B
TypeScript
/**
* @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 type { REPLServer } from 'node:repl';
import { Command } from '#src/repl/helpers/Command';
export declare class Ls extends Command {
static signature(): string;
static help(): string;
static action(this: REPLServer): void;
}