Spaces:
Sleeping
Sleeping
File size: 186 Bytes
cfbbc1a | 1 2 3 4 5 6 7 8 | import { MiddlewareConsumer } from '../middleware/middleware-consumer.interface';
/**
* @publicApi
*/
export interface NestModule {
configure(consumer: MiddlewareConsumer): any;
}
|