UNPKG

@kui-shell/plugin-wskflow

Version:

Visualizations for Composer apps

18 lines (17 loc) 427 B
interface ActivationLike { start: number; duration: number; logs?: string[]; statusCode?: number; response: { success: boolean; result?: Record<string, any>; }; } interface ExtendedActivationAttributes { activationId: string; name: string; end?: number; } export declare type ActivationLikeFull = ActivationLike & ExtendedActivationAttributes; export default ActivationLike;