Interface OperationListItem

interface OperationListItem {
    key: string;
    name: string;
    isReadOnly?: boolean;
    description?: string;
    tags?: string[];
}

Hierarchy

  • OperationBase
    • OperationListItem

Properties

key: string
name: string
isReadOnly?: boolean
description?: string
tags?: string[]