0
Fork 0
mirror of https://github.com/verdaccio/verdaccio.git synced 2024-12-16 21:56:25 -05:00
verdaccio/types/custom.d.ts

14 lines
310 B
TypeScript
Raw Normal View History

2023-03-19 05:39:00 -05:00
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> {}