Interface ConfigurationBooleanParameter

interface ConfigurationBooleanParameter {
    default: boolean;
    name: string;
    options: {
        off: {
            commands: ConfigurationCommand[];
            name: string;
        };
        on: {
            commands: ConfigurationCommand[];
            name: string;
        };
    };
    type: "number" | "select" | "toggle" | "text";
}

Hierarchy (view full)

Properties

default: boolean
name: string
options: {
    off: {
        commands: ConfigurationCommand[];
        name: string;
    };
    on: {
        commands: ConfigurationCommand[];
        name: string;
    };
}

Type declaration

type: "number" | "select" | "toggle" | "text"

Generated using TypeDoc