All Downloads are FREE. Search and download functionalities are using the official Maven repository.

package.src.command-builder.utilities.json-help.d.ts Maven / Gradle / Ivy

There is a newer version: 19.0.0
Show newest version
/**
 * @license
 * Copyright Google LLC All Rights Reserved.
 *
 * Use of this source code is governed by an MIT-style license that can be
 * found in the LICENSE file at https://angular.dev/license
 */
interface JsonHelpOption {
    name: string;
    type?: string;
    deprecated: boolean | string;
    aliases?: string[];
    default?: string;
    required?: boolean;
    positional?: number;
    enum?: string[];
    description?: string;
}
interface JsonHelpDescription {
    shortDescription?: string;
    longDescription?: string;
    longDescriptionRelativePath?: string;
}
interface JsonHelpSubcommand extends JsonHelpDescription {
    name: string;
    aliases: string[];
    deprecated: string | boolean;
}
export interface JsonHelp extends JsonHelpDescription {
    name: string;
    command: string;
    options: JsonHelpOption[];
    subcommands?: JsonHelpSubcommand[];
}
export declare function jsonHelpUsage(): string;
export {};




© 2015 - 2024 Weber Informatics LLC | Privacy Policy