@openshift-console/dynamic-plugin-sdk
Version:
Provides core APIs, types and utilities used by dynamic plugins at runtime.
9 lines (8 loc) • 369 B
JavaScript
export var ProvisionerType;
(function (ProvisionerType) {
/** Container Storage Interface provisioner type */
ProvisionerType["CSI"] = "CSI";
/** Other provisioner type */
ProvisionerType["OTHERS"] = "OTHERS";
})(ProvisionerType || (ProvisionerType = {}));
export const isStorageClassProvisioner = (e) => e.type === 'console.storage-class/provisioner';