mock-service-plugin
Version:
Simulated backend interface service
32 lines (29 loc) • 586 B
TypeScript
interface MockRoute {
filepath: string;
fileName: string;
fileExt: string;
routeKey: string;
method: string;
path: string;
query?: string;
restfulTemplateUrl: string;
describe: string;
contentType: string;
responseTemplate: string;
}
declare global {
interface MockRoute {
filepath: string;
fileName: string;
fileExt: string;
routeKey: string;
method: string;
path: string;
query?: string;
restfulTemplateUrl: string;
describe: string;
contentType: string;
responseTemplate: string;
}
}
export type { MockRoute };