UNPKG

graphdb-workbench

Version:
14 lines (13 loc) 438 B
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[]); }