Interface RuleCatalogItem

interface RuleCatalogItem {
    description: string;
    keywords: string[];
    name: string;
    rule: Rule;
}

Properties

description: string
keywords: string[]
name: string
rule: Rule