UNPKG

@achingbrain/ssdp

Version:

Yet another SSDP implementation for node.js

7 lines 244 B
export interface RequestInit { method?: 'POST' | 'GET'; headers?: Record<string, string>; body?: Buffer | string; } export declare function fetch(url: string, init?: RequestInit): Promise<string>; //# sourceMappingURL=fetch.d.ts.map