8 lines
112 B
TypeScript
8 lines
112 B
TypeScript
export interface IPathRoute {
|
|
methods: string[];
|
|
}
|
|
|
|
export interface Ipath {
|
|
[route: string]: IPathRoute;
|
|
}
|