graphdb-workbench
Version:
The web application for GraphDB APIs
14 lines (13 loc) • 393 B
TypeScript
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[]);
}