8 lines
148 B
TypeScript
8 lines
148 B
TypeScript
import { RouteInfo } from './middleware';
|
|
/**
|
|
* @publicApi
|
|
*/
|
|
export interface GlobalPrefixOptions<T = string | RouteInfo> {
|
|
exclude?: T[];
|
|
}
|