graphdb-workbench
Version:
The web application for GraphDB APIs
14 lines (13 loc) • 438 B
TypeScript
import { ModelList } from '../common';
/**
* Represents a list of capabilities in the license model.
*/
export declare class CapabilityList extends ModelList<string> {
/**
* Creates a new instance of CapabilityList.
*
* @param capabilities - An array of capability to initialize the list.
* If not provided, an empty list will be created.
*/
constructor(capabilities: string[]);
}