Revert "split url and searchParams allow for post option"

This reverts commit 54ab8d4ffe.
This commit is contained in:
arc-alex
2023-12-06 21:24:09 +01:00
parent 2a1b5d4de8
commit f133aebfe8
4 changed files with 17 additions and 50 deletions
@@ -1,7 +1,6 @@
import { Subscription } from './Subscription.type.js';
type httpMethod = 'GET' | 'POST';
export type HttpSubscriptionOptions = { url: string; options: string; enabled: boolean; method: httpMethod };
export type HttpSubscriptionOptions = { message: string; enabled: boolean };
export type HttpSubscription = Subscription<HttpSubscriptionOptions>;
export interface HttpSettings {