UNPKG

query-registry

Version:

Query the npm registry for packuments, manifests, packages and download counts

18 lines 482 B
/** * `GitRepository` represents a git repository hosting * the source code of a package. * * @see {@link Repository} */ export interface GitRepository { /** Repository type, always `git` */ readonly type: 'git'; /** Repository URL */ readonly url: string; /** * Specific directory in the repository * (for example, a directory in a monorepo) */ readonly directory?: string; } //# sourceMappingURL=git-repository.d.ts.map