mirror of
https://github.com/DSpace/dspace-angular.git
synced 2025-10-07 10:04:11 +00:00
9 lines
279 B
TypeScript
9 lines
279 B
TypeScript
import { InjectionToken } from '@angular/core';
|
|
import {
|
|
Request,
|
|
Response,
|
|
} from 'express';
|
|
|
|
export const REQUEST: InjectionToken<Request> = new InjectionToken<Request>('REQUEST');
|
|
export const RESPONSE: InjectionToken<Response> = new InjectionToken<Response>('RESPONSE');
|