15 lines
173 B
TypeScript
15 lines
173 B
TypeScript
|
function buildRequestStub (): any {
|
||
|
return { }
|
||
|
}
|
||
|
|
||
|
function buildResponseStub (): any {
|
||
|
return {
|
||
|
locals: {}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
export {
|
||
|
buildResponseStub,
|
||
|
buildRequestStub
|
||
|
}
|