UNPKG

nakedobjects.spa

Version:

Single Page Application client for a Naked Objects application.

15 lines (14 loc) 560 B
import { CommandResult } from './command-result'; import { Command } from './Command'; export declare class Show 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 renderPropNameAndValue(pm); private renderCollectionItems(coll, startNo, endNo); private renderItems(source, startNo, endNo); }