interface GearInput {
    base: "file" | "context" | "api-key";
    description?: string;
    optional?: boolean;
    read-only?: boolean;
    type?: {
        enum?: string[];
    };
}

Properties

base: "file" | "context" | "api-key"
description?: string
optional?: boolean
read-only?: boolean
type?: {
    enum?: string[];
}

Type declaration

  • Optional enum?: string[]