mirror of
https://github.com/nestjs/nest.git
synced 2026-02-21 23:11:44 +00:00
9 lines
147 B
TypeScript
9 lines
147 B
TypeScript
import { RouteInfo } from './middleware';
|
|
|
|
/**
|
|
* @publicApi
|
|
*/
|
|
export interface GlobalPrefixOptions<T = string | RouteInfo> {
|
|
exclude?: T[];
|
|
}
|