mirror of
https://github.com/gosticks/react-bootstrap-table2.git
synced 2025-10-16 11:55:39 +00:00
11 lines
264 B
JavaScript
11 lines
264 B
JavaScript
import Operation from './src/op';
|
|
|
|
export default Base =>
|
|
class StatelessOperation extends Operation.csvOperation(Base) {
|
|
registerExposedAPI = (...exposedFuncs) => {
|
|
exposedFuncs.forEach((func) => {
|
|
this[func.name] = func;
|
|
});
|
|
}
|
|
};
|