94565d52bb
Because they need dev dependencies
14 lines
173 B
TypeScript
14 lines
173 B
TypeScript
function buildRequestStub (): any {
|
|
return { }
|
|
}
|
|
|
|
function buildResponseStub (): any {
|
|
return {
|
|
locals: {}
|
|
}
|
|
}
|
|
|
|
export {
|
|
buildResponseStub,
|
|
buildRequestStub
|
|
}
|