Function: unregister()
function unregister<T>(type, name): void;
Defined in: packages/blockly/core/registry.ts:225
Unregisters the registry item with the given type and name.
Type Parameters
| Type Parameter |
|---|
T |
Parameters
| Parameter | Type | Description |
|---|---|---|
type | string | Type<T> | The type of the plugin. (e.g. Field, Renderer) |
name | string | The plugin's name. (Ex. field_angle, geras) |
Returns
void