9 lines
125 B
TypeScript
9 lines
125 B
TypeScript
|
module AirtableMock {
|
||
|
function Airtable() {
|
||
|
// @ts-ignore
|
||
|
this.base = jest.fn()
|
||
|
}
|
||
|
|
||
|
module.exports = Airtable
|
||
|
}
|