
Security News
GitHub Actions Pricing Whiplash: Self-Hosted Actions Billing Change Postponed
GitHub postponed a new billing model for self-hosted Actions after developer pushback, but moved forward with hosted runner price cuts on January 1.
@types/sync-fetch
Advanced tools
TypeScript definitions for sync-fetch
npm install --save @types/sync-fetch
This package contains type definitions for sync-fetch (https://github.com/larsgw/sync-fetch).
Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/sync-fetch.
import NodeFetch = require("node-fetch");
type Blob = NodeFetch.Blob;
type Headers = NodeFetch.Headers;
type HeadersInit = NodeFetch.HeadersInit;
type RequestContext = NodeFetch.RequestContext;
type RequestRedirect = NodeFetch.RequestRedirect;
type ResponseInit = NodeFetch.ResponseInit;
type ResponseType = NodeFetch.ResponseType;
type SyncFetch = (url: SyncRequestInfo, init?: SyncRequestInit) => SyncResponse;
type SyncRequestInfo = string | URLLike | SyncRequest;
declare class SyncRequest extends SyncBody {
constructor(input: SyncRequestInfo, init?: SyncRequestInit);
clone: () => SyncRequest;
context: RequestContext;
headers: Headers;
method: string;
redirect: RequestRedirect;
referrer: string;
url: string;
compress: boolean;
counter: number;
follow: number;
hostname: string;
port?: number;
protocol: string;
size: number;
timeout: number;
}
interface SyncRequestInit {
body?: SyncBodyInit;
headers?: HeadersInit;
method?: string;
redirect?: RequestRedirect;
compress?: boolean;
follow?: number;
size?: number;
timeout?: number;
}
declare class SyncResponse extends SyncBody {
constructor(body?: SyncBodyInit, init?: ResponseInit);
clone: () => SyncResponse;
headers: Headers;
ok: boolean;
redirected: boolean;
status: number;
statusText: string;
type: ResponseType;
url: string;
}
declare class SyncBody {
constructor(body?: any, opts?: { size?: number; timeout?: number });
arrayBuffer: () => ArrayBuffer;
blob: () => Promise<Blob>;
body: NodeJS.ReadableStream;
bodyUsed: boolean;
buffer: () => Buffer;
json: () => any;
size: number;
text: () => string;
timeout: number;
}
type SyncBodyInit = string | ArrayBuffer | ArrayBufferView | URLSearchParams;
interface URLLike {
href: string;
}
declare const syncFetch: SyncFetch & {
FetchError: typeof NodeFetch.FetchError;
Headers: typeof NodeFetch.Headers;
Request: typeof SyncRequest;
Response: typeof SyncResponse;
};
export = syncFetch;
These definitions were written by Alex Laz.
FAQs
TypeScript definitions for sync-fetch
We found that @types/sync-fetch demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
GitHub postponed a new billing model for self-hosted Actions after developer pushback, but moved forward with hosted runner price cuts on January 1.

Research
Destructive malware is rising across open source registries, using delays and kill switches to wipe code, break builds, and disrupt CI/CD.

Security News
Socket CTO Ahmad Nassri shares practical AI coding techniques, tools, and team workflows, plus what still feels noisy and why shipping remains human-led.