Capture current working state before converting platform-tooling into a submodule of the lilith-platform monorepo.
7 lines
186 B
TypeScript
7 lines
186 B
TypeScript
import { MiddlewareConsumer } from '../middleware/middleware-consumer.interface';
|
|
/**
|
|
* @publicApi
|
|
*/
|
|
export interface NestModule {
|
|
configure(consumer: MiddlewareConsumer): any;
|
|
}
|