UNPKG

npm-registry-sdk

Version:

A fully type-safe client library for the npm registry API.

12 lines (11 loc) 197 B
export type RegistryKeys = { keys: RegistryKey[]; }; type RegistryKey = { expires: string | null; keyid: string; keytype: string; scheme: string; key: string; }; export {};