Deprecated TypeScript type definitions for gRPC (v1.1.0). This package provided unofficial .d.ts files for gRPC Node.js until official types were published in 2017. It is now obsolete; users should migrate to official @grpc/grpc-js types. No longer maintained.
npm install grpc-tsdNo compatibility data collected yet for this library.
Verified import paths — ran on the pinned version, not inferred.
Shows how to include type definitions and use basic grpc types (Server, ServerCredentials) in a TypeScript project.
Migrate to @grpc/grpc-js and use its built-in types: npm install @grpc/grpc-js
Use import grpc from 'grpc' for this def; official types require import * as grpc from '@grpc/grpc-js' or similar.
Prefer official @grpc/grpc-js types or generate own from protobuf.
Run 'npm install --save-dev grpc-tsd' and add 'node_modules/grpc-tsd/src/grpc.d.ts' to tsconfig.json 'include' array.
Install grpc package: 'npm install grpc' and add types: 'npm install --save-dev @types/grpc' (but note grpc-tsd replaces @types/grpc).
No dependency data recorded yet.