import { ParsedOptions } from '@kui-shell/core'; export interface ListOptions extends ParsedOptions { name?: string; namespace?: string; skip?: number; limit?: number; count?: boolean; } /** * The openwhisk API does not accept "undefined" values for list * options. So, tediously, we need to do the null checks ourselves. * * @return dest, after insertion of non-null options */ export declare function copy(src: ListOptions, dest: ListOptions): ListOptions; export declare function nameForList(name: string): { namespace: string; id: string; };