Registry.unregister() 函数
取消注册具有给定类型和名称的注册表项。
Signature:
export declare function unregister<T>(type: string | Type<T>, name: string): void;
参数
参数 | 类型 | 说明 |
---|---|---|
类型 | 字符串 |类型<T> | 插件的类型。(例如 Field、Renderer) |
name | 字符串 | 插件的名称。(例如:field_angle、geras) |
返回:
void