UNPKG

@servant/servant-cli

Version:

Servant builder for node modules. Cli client fro servant.

12 lines (11 loc) 525 B
import * as api from "@servant/servant"; export interface ResultProps<C extends api.Commands.Commands> { result: api.Commands.CommandProgress[C]; module: string; index: number; } export declare function Result<C extends api.Commands.Commands>(props: ResultProps<C>): JSX.Element; export interface DotResultProps<C extends api.Commands.Commands> { result?: api.Commands.CommandProgress[C]; } export declare function DotResult<C extends api.Commands.Commands>(props: DotResultProps<C>): JSX.Element;