@openshift-console/dynamic-plugin-sdk
Version:
Based on the concept of [webpack module federation](https://webpack.js.org/concepts/module-federation/), dynamic plugins are loaded and interpreted from remote sources at runtime. The standard way to deliver and expose dynamic plugins to Console is throug
6 lines • 321 B
JavaScript
// Type guards
export const isPVCCreateProp = (e) => e.type === 'console.pvc/create-prop';
export const isPVCAlert = (e) => e.type === 'console.pvc/alert';
export const isPVCStatus = (e) => e.type === 'console.pvc/status';
export const isPVCDelete = (e) => e.type === 'console.pvc/delete';
//# sourceMappingURL=pvc.js.map