import stampit from 'stampit'; import { NotImplementedError } from '@swagger-api/apidom-error'; const BundleStrategy = stampit({ props: { name: null }, methods: { canBundle() { return false; }, async bundle() { throw new NotImplementedError('bundle method in BundleStrategy stamp is not yet implemented.'); } } }); export default BundleStrategy;