cc-terminal
Version:
AngularJs Web based terminal module
20 lines (19 loc) • 617 B
TypeScript
import { Store } from './store';
import { CommandState, CommandInterface } from './cc-terminal-command-state';
import * as i0 from "@angular/core";
export declare class CommandStore extends Store<CommandState> {
constructor();
addKeyValue(command: {
name: string;
key: string;
value: any;
}): void;
/**
* @description - This function will add the command
*
* @param command
*/
addCommand(command: CommandInterface): void;
static ɵfac: i0.ɵɵFactoryDeclaration<CommandStore, never>;
static ɵprov: i0.ɵɵInjectableDeclaration<CommandStore>;
}