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

Hierarchy (View Summary)

Properties

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