9 lines
344 B
TypeScript
9 lines
344 B
TypeScript
export type CreateMultipartSubscriptionOptions = {
|
|
fetch?: WindowOrWorkerGlobalScope["fetch"];
|
|
headers?: Record<string, string>;
|
|
};
|
|
export declare function generateOptionsForMultipartSubscription(headers: Record<string, string>): {
|
|
headers: Record<string, any>;
|
|
body?: string | undefined;
|
|
};
|
|
//# sourceMappingURL=shared.d.ts.map
|