UNPKG

kui-shell

Version:

This is the monorepo for Kui, the hybrid command-line/GUI electron-based Kubernetes tool

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;