UNPKG

graphdb-workbench

Version:
14 lines (13 loc) 393 B
import { Operation } from './operation'; import { ModelList } from '../common'; /** * Represents a list of Operation objects. */ export declare class OperationList extends ModelList<Operation> { /** * Creates a new instance of OperationList. * * @param operations - An array of Operation objects to initialize the list. */ constructor(operations: Operation[]); }