@achingbrain/ssdp
Version:
Yet another SSDP implementation for node.js
9 lines • 306 B
TypeScript
/// <reference types="node" />
/// <reference types="node" />
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