source: node_modules/@swagger-api/apidom-reference/es/bundle/strategies/BundleStrategy.mjs

main
Last change on this file was d24f17c, checked in by Aleksandar Panovski <apano77@…>, 15 months ago

Initial commit

  • Property mode set to 100644
File size: 385 bytes
Line 
1import stampit from 'stampit';
2import { NotImplementedError } from '@swagger-api/apidom-error';
3const BundleStrategy = stampit({
4 props: {
5 name: null
6 },
7 methods: {
8 canBundle() {
9 return false;
10 },
11 async bundle() {
12 throw new NotImplementedError('bundle method in BundleStrategy stamp is not yet implemented.');
13 }
14 }
15});
16export default BundleStrategy;
Note: See TracBrowser for help on using the repository browser.