mirror of
https://github.com/verdaccio/verdaccio.git
synced 2024-11-13 03:35:52 +01:00
14 lines
310 B
TypeScript
14 lines
310 B
TypeScript
import { pluginUtils } from '@verdaccio/core';
|
|
import { Logger, RemoteUser } from '@verdaccio/types';
|
|
|
|
declare global {
|
|
namespace Express {
|
|
export interface Request {
|
|
remote_user: RemoteUser;
|
|
log: Logger;
|
|
}
|
|
}
|
|
}
|
|
|
|
export interface StoragePluginLegacy<T> extends pluginUtils.Storage<T> {}
|