UNPKG

@servant/servant-cli

Version:

Servant builder for node modules. Cli client fro servant.

10 lines (9 loc) 455 B
import * as React from "react"; import { ServantState } from "../index"; export type ActionsProps = ServantState & { setState: (state: Partial<ServantState>, callback?: () => void) => void; onDone?: () => void; }; export declare const UnifyAction: React.StatelessComponent<ActionsProps>; export declare const InitAction: React.StatelessComponent<ActionsProps>; export declare const GenerateAction: React.StatelessComponent<ActionsProps>;