/** * Copyright (c) Investec * * This source code is licensed under the MIT license found in the * LICENSE.md file in the root directory of this source tree. */ declare const options: { readonly appLocation: { readonly short: "l"; readonly type: "string"; }; readonly branchName: { readonly short: "b"; readonly type: "string"; }; readonly help: { readonly short: "h"; readonly type: "boolean"; }; readonly keyVaultName: { readonly short: "k"; readonly type: "string"; }; readonly mode: { readonly short: "m"; readonly type: "string"; }; readonly name: { readonly short: "n"; readonly type: "string"; }; readonly resourceGroupName: { readonly short: "r"; readonly type: "string"; }; readonly subscriptionName: { readonly short: "s"; readonly type: "string"; }; readonly type: { readonly short: "t"; readonly type: "string"; }; readonly version: { readonly short: "v"; readonly type: "boolean"; }; }; type ValidOption = keyof typeof options; interface DocOption { description: string; docsSection: "core" | "optional"; multiple?: boolean; short: string; type: string; } declare const allArgOptions: Record; export { type DocOption, type ValidOption, allArgOptions, options };