esm.mjs 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. import Snekfetch from './index.js';
  2. export default Snekfetch;
  3. export const version = Snekfetch.version;
  4. export const METHODS = Snekfetch.METHODS;
  5. export const acl = Snekfetch.acl;
  6. export const bind = Snekfetch.bind;
  7. export const checkout = Snekfetch.checkout;
  8. export const connect = Snekfetch.connect;
  9. export const copy = Snekfetch.copy;
  10. const _delete = Snekfetch.delete;
  11. export { _delete as delete };
  12. export const get = Snekfetch.get;
  13. export const head = Snekfetch.head;
  14. export const link = Snekfetch.link;
  15. export const lock = Snekfetch.lock;
  16. export const merge = Snekfetch.merge;
  17. export const mkactivity = Snekfetch.mkactivity;
  18. export const mkcalendar = Snekfetch.mkcalendar;
  19. export const mkcol = Snekfetch.mkcol;
  20. export const move = Snekfetch.move;
  21. export const notify = Snekfetch.notify;
  22. export const options = Snekfetch.options;
  23. export const patch = Snekfetch.patch;
  24. export const post = Snekfetch.post;
  25. export const propfind = Snekfetch.propfind;
  26. export const proppatch = Snekfetch.proppatch;
  27. export const purge = Snekfetch.purge;
  28. export const put = Snekfetch.put;
  29. export const rebind = Snekfetch.rebind;
  30. export const report = Snekfetch.report;
  31. export const search = Snekfetch.search;
  32. export const subscribe = Snekfetch.subscribe;
  33. export const trace = Snekfetch.trace;
  34. export const unbind = Snekfetch.unbind;
  35. export const unlink = Snekfetch.unlink;
  36. export const unlock = Snekfetch.unlock;
  37. export const unsubscribe = Snekfetch.unsubscribe;
  38. export const brew = Snekfetch.brew;