nakedobjects.spa
Version:
Single Page Application client for a Naked Objects application.
16 lines (15 loc) • 501 B
TypeScript
import { CommandResult } from './command-result';
import { Command } from './Command';
export declare class Clipboard extends Command {
shortCommand: string;
fullCommand: string;
helpText: string;
protected minArguments: number;
protected maxArguments: number;
isAvailableInCurrentContext(): boolean;
doExecute(args: string | null, chained: boolean): Promise<CommandResult>;
private copy();
private show();
private go();
private discard();
}