Files
threetwo/src/server/interfaces/path.interface.ts
2021-04-15 15:15:23 -07:00

8 lines
112 B
TypeScript

export interface IPathRoute {
methods: string[];
}
export interface Ipath {
[route: string]: IPathRoute;
}