@tikoci/centrs
    Preparing search index...

    Interface CapabilityRequirement

    A capability a centrs-generated command depends on, with the version windows where RouterOS provides it. Define these next to the consumer (e.g. the transfer spec owns the mkdir requirement) and document the grounding evidence there.

    interface CapabilityRequirement {
        capability: string;
        remediation?: string;
        summary: string;
        supported: readonly RouterOsVersionRange[];
    }
    Index

    Properties

    capability: string

    Stable slug for error context, e.g. file-add-directory.

    remediation?: string

    Extra guidance appended to the typed error's remediation.

    summary: string

    Human phrase for the operation, e.g. "create directories with /file add type=directory".

    supported: readonly RouterOsVersionRange[]

    Windows where the capability exists; supported when ANY range matches.