import { KeyVal, Limits } from 'openwhisk'; export interface KeyValOptions { parameters: KeyVal[]; annotations: KeyVal[]; limits: Limits; } /** * Parse the key-value and limit options from the given `argv`, and * return the residual `argvNoOptions` with all options stripped * off. Also return the index of the `name` that follows the given * `verb`. * */ export declare function kvOptions(argv: string[], verb: string): { kv: KeyValOptions; argvNoOptions: string[]; nameIdx: number; }; export default kvOptions;