Funzione registry.hasItem()
Indica se il registro contiene o meno un elemento con il tipo e il nome specificati.
Firma:
export declare function hasItem<T>(type: string | Type<T>, name: string): boolean;
Parametri
Parametro | Tipo | Descrizione |
---|---|---|
tipo | stringa | Tipo<T> | Il tipo di plug-in. (ad es. Field, Renderer) |
nome | stringa | Il nome del plug-in. (ad es. field_angle, geras). |
Resi:
booleano
True se il registry ha un elemento con il tipo e il nome specificati, false negli altri casi.